DataTable.WriteXmlSchema Method (String, Boolean)
Assembly: System.Data (in system.data.dll)
public void WriteXmlSchema ( String fileName, boolean writeHierarchy )
public function WriteXmlSchema ( fileName : String, writeHierarchy : boolean )
Parameters
- fileName
The name of the file to use.
- writeHierarchy
If true, write the schema of the current table and all its descendants. If false (the default value), write the schema 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 WriteXmlSchema method writes the schema only for the current table. To write the schema for the current table and its entire descendant, related tables, call the method with the writeHierarchy parameter set to true.
Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.
Reference
DataTable ClassDataTable Members
System.Data Namespace