XML and ASP.NET
| only for RuBoard |
System.Xml.XmlImplementation and IXMLDOMImplementation
XmlImplementation class in the System.Xml namespace is the implementation of the W3C DOMImplementation interface. You can get the XmlImplementatio n object for a document using the XmlDocument object's Implementation property. XmlImplementation class provides methods that are independent of any particular instance of the DOM. Table B.5 list these methods .
Table B.5. System.Xml.XmlImplementation and IXMLDOMImplementation Methods
| XmlImplementation | Description | MSXML IXMLDOM Implementation |
|---|---|---|
| CreateDocument | Creates a new XmlDocument object. | |
| HasFeature | Returns a Boolean indicating whether the DOM implementation implements a specific feature passed in as a parameter. | hasFeature |
| only for RuBoard |