Click or drag to resize
HierarchyHelperLoadDataSetFromJSON Method
Recursively loads dataset from JSON deserialized object. Returns list of fields contained in the JSON data (for update object purposes).

Namespace: CMS.DataEngine
Assembly: CMS.DataEngine (in CMS.DataEngine.dll) Version: 13.0.131
Syntax
C#
protected static List<string> LoadDataSetFromJSON(
	DataSet ds,
	string tableName,
	IEnumerable<JObject> values,
	string cultureName = null
)

Parameters

ds
Type: System.DataDataSet
DataSet to fill the data in
tableName
Type: SystemString
Name of the table
values
Type: System.Collections.GenericIEnumerableJObject
Values from deserialization
cultureName (Optional)
Type: SystemString
Name of culture used for parsing values from JSON.

Return Value

Type: ListString
See Also