DataSet.WriteXml メソッド
DataSet から XML データを書き込みます。オプションでスキーマも書き込むことができます。
オーバーロードの一覧
指定した System.IO.Stream を使用して DataSet の現在のデータを書き込みます。
[Visual Basic] Overloads Public Sub WriteXml(Stream)
[JScript] public function WriteXml(Stream);
指定したファイルに、 DataSet の現在のデータを書き込みます。
.NET Compact Framework でもサポート。
[Visual Basic] Overloads Public Sub WriteXml(String)
[JScript] public function WriteXml(String);
指定した TextWriter を使用して DataSet の現在のデータを書き込みます。
[Visual Basic] Overloads Public Sub WriteXml(TextWriter)
[JScript] public function WriteXml(TextWriter);
指定した XmlWriter に、 DataSet の現在のデータを書き込みます。
[Visual Basic] Overloads Public Sub WriteXml(XmlWriter)
[JScript] public function WriteXml(XmlWriter);
指定した System.IO.Stream と XmlWriteMode を使用して、 DataSet の現在のデータを書き込みます。オプションでスキーマを書き込むこともできます。スキーマを書き込むには、 XMLWriteMode パラメータの値を WriteSchema に設定します。
[Visual Basic] Overloads Public Sub WriteXml(Stream, XmlWriteMode)
指定した XmlWriteMode を使用して、 DataSet の現在のデータを、指定したファイルに書き込みます。オプションでスキーマを書き込むこともできます。スキーマを書き込むには、 XMLWriteMode パラメータの値を WriteSchema に設定します。
[Visual Basic] Overloads Public Sub WriteXml(String, XmlWriteMode)
指定した TextWriter と XmlWriteMode を使用して、 DataSet の現在のデータを書き込みます。オプションでスキーマを書き込むこともできます。スキーマを書き込むには、 XMLWriteMode パラメータの値を WriteSchema に設定します。
[Visual Basic] Overloads Public Sub WriteXml(TextWriter, XmlWriteMode)
[JScript] public function WriteXml(TextWriter, XmlWriteMode);
指定した XmlWriter と XmlWriteMode を使用して、 DataSet の現在のデータを書き込みます。オプションでスキーマを書き込むこともできます。スキーマを書き込むには、 XMLWriteMode パラメータの値を WriteSchema に設定します。
.NET Compact Framework でもサポート。
[Visual Basic] Overloads Public Sub WriteXml(XmlWriter, XmlWriteMode)
[JScript] public function WriteXml(XmlWriter, XmlWriteMode);
使用例
[Visual Basic, C#, C++] 新しい System.Xml.XmlTextWriter の作成に使用される System.IO.FileStream オブジェクトを作成する例を次に示します。 WriteXml メソッドで XmlTextWriter オブジェクトを使用して、XML ドキュメントを書き込みます。
[Visual Basic, C#, C++] メモ ここでは、WriteXml のオーバーロード形式のうちの 1 つだけについて、使用例を示します。その他の例については、各オーバーロード形式のトピックを参照してください。
Private Sub WriteXmlToFile(thisDataSet As DataSet)
If thisDataSet Is Nothing Then
Return
End If
' Create a file name to write to.
Dim filename As String = "myXmlDoc.xml"
' Create the FileStream to write with.
Dim myFileStream As New System.IO.FileStream _
(filename, System.IO.FileMode.Create)
' Create an XmlTextWriter with the fileStream.
Dim myXmlWriter As New System.Xml.XmlTextWriter _
(myFileStream, System.Text.Encoding.Unicode)
' Write to the file with the WriteXml method.
thisDataSet.WriteXml(myXmlWriter)
myXmlWriter.Close()
End Sub
[C#]
private void WriteXmlToFile(DataSet thisDataSet) {
if (thisDataSet == null) { return; }
// Create a file name to write to.
string filename = "myXmlDoc.xml";
// Create the FileStream to write with.
System.IO.FileStream myFileStream = new System.IO.FileStream
(filename, System.IO.FileMode.Create);
// Create an XmlTextWriter with the fileStream.
System.Xml.XmlTextWriter myXmlWriter =
new System.Xml.XmlTextWriter(myFileStream, System.Text.Encoding.Unicode);
// Write to the file with the WriteXml method.
thisDataSet.WriteXml(myXmlWriter);
myXmlWriter.Close();
}
[C++]
private:
void WriteXmlToFile(DataSet* thisDataSet) {
if (thisDataSet == 0) { return; }
// Create a file name to write to.
String* filename = S"myXmlDoc.xml";
// Create the FileStream to write with.
System::IO::FileStream* myFileStream = new System::IO::FileStream
(filename, System::IO::FileMode::Create);
// Create an XmlTextWriter with the fileStream.
System::Xml::XmlTextWriter* myXmlWriter =
new System::Xml::XmlTextWriter(myFileStream, System::Text::Encoding::Unicode);
// Write to the file with the WriteXml method.
thisDataSet->WriteXml(myXmlWriter);
myXmlWriter->Close();
}
[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン をクリックします。