System.Data Namespace DataSet Class
Writes the current data for a DataSet using the specified file.
[ VB ]
Overloads Public Sub WriteXml ( _
ByVal fileName As String _
)
[ C# ]
public void WriteXml (
String fileName
);
[ C++ ]
public: void WriteXml (
String* fileName
);
[ JScript ]
public function WriteXml (
fileName : String
);
- fileName
- The file name ( including the path ) to write to.
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.
DataSet Members DataSet.WriteXml Overload List WriteXmlSchema ReadXml ReadXmlSchema