public class XmlImplementation
|
Although the XmlDocument objects share the same implementation, to move nodes from one document to another you must use the XmlDocument.ImportNode method.
ctor #1 | Default constructor. This constructor is called by derived class constructors to initialize state in this type. Initializes a new instance of the XmlImplementation class. |
CreateDocument | Creates a new XmlDocument. |
Equals (inherited from System.Object) |
See base class member description: System.Object.Equals Derived from System.Object, the primary base class for all objects. |
GetHashCode (inherited from System.Object) |
See base class member description: System.Object.GetHashCode Derived from System.Object, the primary base class for all objects. |
GetType (inherited from System.Object) |
See base class member description: System.Object.GetType Derived from System.Object, the primary base class for all objects. |
HasFeature | Tests if the DOM implementation implements a specific feature. |
ToString (inherited from System.Object) |
See base class member description: System.Object.ToString Derived from System.Object, the primary base class for all objects. |
Finalize (inherited from System.Object) |
See base class member description: System.Object.Finalize Derived from System.Object, the primary base class for all objects. |
MemberwiseClone (inherited from System.Object) |
See base class member description: System.Object.MemberwiseClone Derived from System.Object, the primary base class for all objects. |
Hierarchy:
public XmlImplementation(); |
public virtual XmlDocument CreateDocument(); |
Although the XmlDocument objects share the same implementation, to move nodes from one document to another you must use the XmlDocument.ImportNode method.
XmlImplementation imp = new XmlImplementation(); XmlDocument doc1 = imp.CreateDocument(); XmlDocument doc2 = imp.CreateDocument();
~XmlImplementation(); |
public virtual int GetHashCode(); |
public Type GetType(); |
strFeature
strVersion
The following table shows the combinations that cause HasFeature to return true.
strFeature | strVersion |
---|---|
XML | 1.0 |
XML | 2.0 |
protected object MemberwiseClone(); |
public virtual string ToString(); |