Click or drag to resize
DataHelperWriteDataSetToXml Method
Writes the DataSet from given XML reader.

Namespace: CMS.Helpers
Assembly: CMS.Helpers (in CMS.Helpers.dll) Version: 11.0.0
Syntax
C#
public static void WriteDataSetToXml(
	DataSet ds,
	XmlWriter xml,
	string filePathColumn,
	DataHelperActionCallback rowCallback,
	Object[] parameters
)

Parameters

ds
Type: System.DataDataSet
DataSet to read
xml
Type: System.XmlXmlWriter
XML to read
filePathColumn
Type: SystemString
Column name with the file path to the binary file
rowCallback
Type: CMS.HelpersDataHelperActionCallback
Callback action which should be called before each row is written. The DataSet, DataTable a DataRow are added as additional parameters
parameters
Type: SystemObject
Callback parameters
See Also