Click or drag to resize
DocumentHierarchyHelperLoadObjectFromJSON Method
Loads objects data including collection from a given XML representation.

Namespace: CMS.DocumentEngine
Assembly: CMS.DocumentEngine (in CMS.DocumentEngine.dll) Version: 8.2.23
Syntax
C#
public static TranslationHelper LoadObjectFromJSON(
	TreeNode node,
	string json,
	bool disconnectObject = false,
	bool updateMode = false,
	List<string> excludedColumns = null
)

Parameters

node
Type: CMS.DocumentEngineTreeNode
TreeNode to load
json
Type: SystemString
JSON data
disconnectObject (Optional)
Type: SystemBoolean
If true, object collections are disconnected (collections won't load data automatically from the DB, just from dataset)
updateMode (Optional)
Type: SystemBoolean
If true, only column contained in the JSON method are loaded (columns which are not contained are not set to null)
excludedColumns (Optional)
Type: System.Collections.GenericListString
Columns which will be ignored during the data load even if they are in the provided data

Return Value

Type: TranslationHelper
Translation helper
See Also