次の方法で共有


XmlNode.WriteContentTo メソッド

派生クラスでオーバーライドされた場合は、指定した XmlWriter にノードのすべての子ノードを保存します。

Public MustOverride Sub WriteContentTo( _
   ByVal w As XmlWriter _)
[C#]
public abstract void WriteContentTo(XmlWriterw);
[C++]
public: virtual void WriteContentTo(XmlWriter* w) = 0;
[JScript]
public abstract function WriteContentTo(
   w : XmlWriter);

パラメータ

  • w
    保存先の XmlWriter

解説

このメソッドは、ドキュメント オブジェクト モデル (DOM: Document Object Model) に対する Microsoft 拡張機能です。このメソッドは、機能的には InnerXml プロパティと等価です。

使用例

[Visual Basic, C#, C++] ルート ノードの内容をコンソールに表示する例を次に示します。

 
Option Explicit
Option Strict

Imports System
Imports System.IO
Imports System.Xml

Public Class Sample
    
    Public Shared Sub Main()
        
        Dim doc As New XmlDocument()
        doc.LoadXml("<book xmlns:bk='urn:samples' bk:ISBN='1-861001-57-5'>" & _ 
                    "<title>Pride And Prejudice</title>" & _ 
                    "</book>")
        
        Dim root As XmlNode = doc.FirstChild
        
        ' Because WriteContentTo saves only the child nodes of the node
        ' to the writer none of the attributes are displayed.
        Console.WriteLine("Display the contents of the node...")
        Dim writer As New XmlTextWriter(Console.Out)
        writer.Formatting = Formatting.Indented
        root.WriteContentTo(writer)
    End Sub 'Main 
End Class 'Sample

[C#] 
using System;
using System.IO;
using System.Xml;

public class Sample {

  public static void Main() {

    XmlDocument doc = new XmlDocument();
    doc.LoadXml("<book xmlns:bk='urn:samples' bk:ISBN='1-861001-57-5'>" +
                "<title>Pride And Prejudice</title>" +
                "</book>");

    XmlNode root = doc.FirstChild;

    // Because WriteContentTo saves only the child nodes of the node
    // to the writer none of the attributes are displayed.
    Console.WriteLine("Display the contents of the node...");
    XmlTextWriter writer = new XmlTextWriter(Console.Out);
    writer.Formatting = Formatting.Indented;
    root.WriteContentTo(writer);

  }
}

[C++] 
#using <mscorlib.dll>
#using <System.Xml.dll>
using namespace System;
using namespace System::IO;
using namespace System::Xml;

int main()
{
    XmlDocument* doc = new XmlDocument();
    doc->LoadXml(S"<book xmlns:bk='urn:samples' bk:ISBN='1-861001-57-5'>" 
                 S"<title>Pride And Prejudice</title>" 
                 S"</book>");

    XmlNode* root = doc->FirstChild;

    // Because WriteContentTo saves only the child nodes of the node
    // to the writer none of the attributes are displayed.
    Console::WriteLine(S"Display the contents of the node...");
    XmlTextWriter* writer = new XmlTextWriter(Console::Out);
    writer->Formatting = Formatting::Indented;
    root->WriteContentTo(writer);
}

[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン 言語のフィルタ をクリックします。

必要条件

プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ, .NET Compact Framework - Windows CE .NET

参照

XmlNode クラス | XmlNode メンバ | System.Xml 名前空間 | WriteTo