Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

DataSet::GetXmlSchema Method ()

 

Returns the XML Schema for the XML representation of the data stored in the DataSet.

Namespace:   System.Data
Assembly:  System.Data (in System.Data.dll)

public:
String^ GetXmlSchema()

Return Value

Type: System::String^

String that is the XML Schema for the XML representation of the data stored in the DataSet.

Calling this method is identical to calling WriteXmlSchema, except that only the primary schema is written.

GetXmlSchema returns XML as a string, and therefore requires more overhead than WriteXmlSchema to write XML to a file.

If you build a DataSet using schema inference and serialize it using XML or Web services, the column ordering may change.

The following example creates a DataSet and DataTable, and then displays the schema in XML format.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 1.1
Return to top
Show:
© 2017 Microsoft