asp.net.ph

DataSet.WriteXml Method ( TextWriter, XmlWriteMode )

System.Data Namespace   DataSet Class


Writes the current data, and optionally the schema, for a DataSet using the specified TextWriter and XmlWriteMode. To write the schema, set the value for the XmlWriteMode parameter to WriteSchema.

[ VB ]
Overloads Public Sub WriteXml ( _
   ByVal writer As TextWriter, _
   ByVal mode As XmlWriteMode _
)

[ C# ]
public void WriteXml (
   TextWriter writer,
   XmlWriteMode mode
);

[ C++ ]
public: void WriteXml (
   TextWriter* writer,
   XmlWriteMode mode
);

[ JScript ]
public function WriteXml (
   writer : TextWriter,
   mode : XmlWriteMode
);

Parameters

writer
A System.IO.TextWriter object used to write the document.
mode
One of the XmlWriteMode values.

Remarks

The WriteXml method provides a way to write either data only, or both data and schema from a DataSet into an XML document, whereas the WriteXmlSchema method writes only the schema. To write both data and schema, use one of the overloads that includes the XmlWriteMode parameter, and set its value to WriteSchema.

Note that the same is true for the ReadXml and ReadXmlSchema methods, respectively. To read XML data, or both schema and data into the DataSet, use the ReadXml method. To read just the schema, use the ReadXmlSchema method.

See Also

DataSet Members   DataSet.WriteXml Overload List   WriteXmlSchema   ReadXml   ReadXmlSchema Skip Navigation Links




Home
Suggested Reading


Previous page Back to top Next page

© 2000-2010 Rey Nuñez All rights reserved.

If you have any question, comment or suggestion
about this site, please send us a note

You can help support asp.net.ph