Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

XmlDocument::Implementation Property

 

Gets the XmlImplementation object for the current document.

Namespace:   System.Xml
Assembly:  System.Xml (in System.Xml.dll)

public:
property XmlImplementation^ Implementation {
	XmlImplementation^ get();
}

Property Value

Type: System.Xml::XmlImplementation^

The XmlImplementation object for the current document.

XmlDocument objects created from the same XmlImplementation share the same XmlNameTable. This allows users to compare attribute and element names as objects rather than strings.

Although the XmlDocument objects share the same implementation, to move nodes from one document to another you must use the ImportNode method.

The following example creates a new XmlDocument using another document's implementation.

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

Universal Windows Platform
Available since 10
.NET Framework
Available since 1.1
Return to top
Show:
© 2017 Microsoft