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

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

Parameters

ds
Type: System.Data.DataSet
DataSet to read
xml
Type: System.Xml.XmlWriter
XML to read
filePathColumn
Type: System.String
Column name with the file path to the binary file
rowCallback
Type: CMS.Helpers.DataHelper.ActionCallback
Callback action which should be called before each row is written. The DataSet, DataTable a DataRow are added as additional parameters
parameters
Type:System.Object[]
Callback parameters
See Also