XmlDocument.Implementation プロパティ

定義

現在のドキュメントの XmlImplementation オブジェクトを取得します。

public:
 property System::Xml::XmlImplementation ^ Implementation { System::Xml::XmlImplementation ^ get(); };
public System.Xml.XmlImplementation Implementation { get; }
member this.Implementation : System.Xml.XmlImplementation
Public ReadOnly Property Implementation As XmlImplementation

プロパティ値

現在のドキュメントの XmlImplementation オブジェクト。

次の例では、別のドキュメントの実装を使用して新しい XmlDocument を作成します。

XmlDocument^ doc1 = gcnew XmlDocument;
doc1->Load( "books.xml" );
XmlDocument^ doc2 = doc1->Implementation->CreateDocument();
XmlDocument doc1 = new XmlDocument();
 doc1.Load("books.xml");
 XmlDocument doc2 = doc1.Implementation.CreateDocument();
Dim doc1 As New XmlDocument()
doc1.Load("books.xml")
Dim doc2 As XmlDocument = doc1.Implementation.CreateDocument()

注釈

XmlDocument 同じ から作成された オブジェクトは、同 XmlImplementationXmlNameTableを共有します。 これにより、ユーザーは属性と要素の名前を文字列ではなくオブジェクトとして比較できます。

オブジェクトは XmlDocument 同じ実装を共有しますが、あるドキュメントから別のドキュメントにノードを移動するには、 メソッドを ImportNode 使用する必要があります。

適用対象