| DataHelperWriteDataSetToXml Method | 
            Writes the DataSet from given XML reader.
            
 
Namespace: CMS.HelpersAssembly: CMS.Helpers (in CMS.Helpers.dll) Version: 10.0.0
 Syntax
Syntaxpublic 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
See Also