DataTable::WriteXml Method (Stream, Boolean)
Assembly: System.Data (in System.Data.dll)
Parameters
- stream
- Type: System.IO::Stream
The stream to which the data will be written.
- writeHierarchy
- Type: System::Boolean
If true, write the contents of the current table and all its descendants. If false (the default value), write the data for the current table only.
Use the WriteXmlSchema method to write the schema for a DataTable to an XML document. The schema includes table, relation, and constraint definitions.
The XML schema is written using the XSD standard.
To write the data to an XML document, use the WriteXml method.
Normally the WriteXml method writes the data only for the current table. To write the data for the current table and all of its descendant, related tables, call the method with the writeHierarchy parameter set to true.
Note |
|---|
An InvalidOperationException will be thrown if a column type in the DataRow being read from or written to implements IDynamicMetaObjectProvider and does not implement IXmlSerializable. |
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Note