Click or drag to resize
DataHelperReadDataSetFromXml Method (DataSet, XmlReader, DataHelperActionCallback, Object)
Reads the DataSet from given XML reader (expects "NewDataSet" as a root node).

Namespace: CMS.Helpers
Assembly: CMS.Helpers (in CMS.Helpers.dll) Version: 9.0.0
Syntax
C#
public static DataSet ReadDataSetFromXml(
	DataSet ds,
	XmlReader xml,
	DataHelperActionCallback rowCallback,
	Object[] parameters
)

Parameters

ds
Type: System.DataDataSet
DataSet to read
xml
Type: System.XmlXmlReader
XML to read
rowCallback
Type: CMS.HelpersDataHelperActionCallback
Callback action which should be called after each row is loaded. The DataSet, DataTable a DataRow are added as additional parameters
parameters
Type: SystemObject
Callback parameters

Return Value

Type: DataSet
See Also