Interface IDocument
.NET interface for TO BE DEFINED FROM USER
public interface IDocument : INode
- Inherited Members
Properties
Doctype
DocumentType Doctype { get; }
Property Value
DocumentElement
Element DocumentElement { get; }
Property Value
DocumentURI
https://docs.oracle.com/en/java/javase/11/docs/api/java.xml/org/w3c/dom/Document.html#getDocumentURI() https://docs.oracle.com/en/java/javase/11/docs/api/java.xml/org/w3c/dom/Document.html#setDocumentURI(java.lang.String)
String DocumentURI { get; set; }
Property Value
DomConfig
https://docs.oracle.com/en/java/javase/11/docs/api/java.xml/org/w3c/dom/Document.html#getDomConfig()
DOMConfiguration DomConfig { get; }
Property Value
Implementation
DOMImplementation Implementation { get; }
Property Value
InputEncoding
String InputEncoding { get; }
Property Value
StrictErrorChecking
https://docs.oracle.com/en/java/javase/11/docs/api/java.xml/org/w3c/dom/Document.html#getStrictErrorChecking() https://docs.oracle.com/en/java/javase/11/docs/api/java.xml/org/w3c/dom/Document.html#setStrictErrorChecking(boolean)
bool StrictErrorChecking { get; set; }
Property Value
XmlEncoding
String XmlEncoding { get; }
Property Value
XmlStandalone
https://docs.oracle.com/en/java/javase/11/docs/api/java.xml/org/w3c/dom/Document.html#getXmlStandalone() https://docs.oracle.com/en/java/javase/11/docs/api/java.xml/org/w3c/dom/Document.html#setXmlStandalone(boolean)
bool XmlStandalone { get; set; }
Property Value
XmlVersion
https://docs.oracle.com/en/java/javase/11/docs/api/java.xml/org/w3c/dom/Document.html#getXmlVersion() https://docs.oracle.com/en/java/javase/11/docs/api/java.xml/org/w3c/dom/Document.html#setXmlVersion(java.lang.String)
String XmlVersion { get; set; }
Property Value
Methods
AdoptNode(Node)
Node AdoptNode(Node arg0)
Parameters
Returns
Exceptions
CreateAttribute(String)
Attr CreateAttribute(String arg0)
Parameters
Returns
Exceptions
CreateAttributeNS(String, String)
Attr CreateAttributeNS(String arg0, String arg1)
Parameters
Returns
Exceptions
CreateCDATASection(String)
CDATASection CreateCDATASection(String arg0)
Parameters
Returns
Exceptions
CreateComment(String)
Comment CreateComment(String arg0)
Parameters
Returns
CreateDocumentFragment()
DocumentFragment CreateDocumentFragment()
Returns
CreateElement(String)
Element CreateElement(String arg0)
Parameters
Returns
Exceptions
CreateElementNS(String, String)
Element CreateElementNS(String arg0, String arg1)
Parameters
Returns
Exceptions
CreateEntityReference(String)
EntityReference CreateEntityReference(String arg0)
Parameters
Returns
Exceptions
CreateProcessingInstruction(String, String)
ProcessingInstruction CreateProcessingInstruction(String arg0, String arg1)
Parameters
Returns
Exceptions
CreateTextNode(String)
Text CreateTextNode(String arg0)
Parameters
Returns
GetElementById(String)
Element GetElementById(String arg0)
Parameters
Returns
GetElementsByTagName(String)
NodeList GetElementsByTagName(String arg0)
Parameters
Returns
GetElementsByTagNameNS(String, String)
NodeList GetElementsByTagNameNS(String arg0, String arg1)
Parameters
Returns
ImportNode(Node, bool)
Node ImportNode(Node arg0, bool arg1)
Parameters
Returns
Exceptions
NormalizeDocument()
void NormalizeDocument()
RenameNode(Node, String, String)
Node RenameNode(Node arg0, String arg1, String arg2)