Table of Contents

Interface IDocument

Namespace
Org.W3c.Dom
Assembly
MASES.JNet.dll

.NET interface for TO BE DEFINED FROM USER

public interface IDocument : INode
Inherited Members

Properties

Doctype

DocumentType Doctype { get; }

Property Value

DocumentType

DocumentElement

Element DocumentElement { get; }

Property Value

Element

DocumentURI

String DocumentURI { get; set; }

Property Value

String

DomConfig

DOMConfiguration DomConfig { get; }

Property Value

DOMConfiguration

Implementation

DOMImplementation Implementation { get; }

Property Value

DOMImplementation

InputEncoding

String InputEncoding { get; }

Property Value

String

StrictErrorChecking

bool StrictErrorChecking { get; set; }

Property Value

bool

XmlEncoding

String XmlEncoding { get; }

Property Value

String

XmlStandalone

bool XmlStandalone { get; set; }

Property Value

bool

XmlVersion

String XmlVersion { get; set; }

Property Value

String

Methods

AdoptNode(Node)

Node AdoptNode(Node arg0)

Parameters

arg0 Node

Node

Returns

Node

Node

Exceptions

DOMException

CreateAttribute(String)

Attr CreateAttribute(String arg0)

Parameters

arg0 String

String

Returns

Attr

Attr

Exceptions

DOMException

CreateAttributeNS(String, String)

Attr CreateAttributeNS(String arg0, String arg1)

Parameters

arg0 String

String

arg1 String

String

Returns

Attr

Attr

Exceptions

DOMException

CreateCDATASection(String)

CDATASection CreateCDATASection(String arg0)

Parameters

arg0 String

String

Returns

CDATASection

CDATASection

Exceptions

DOMException

CreateComment(String)

Comment CreateComment(String arg0)

Parameters

arg0 String

String

Returns

Comment

Comment

CreateDocumentFragment()

DocumentFragment CreateDocumentFragment()

Returns

DocumentFragment

DocumentFragment

CreateElement(String)

Element CreateElement(String arg0)

Parameters

arg0 String

String

Returns

Element

Element

Exceptions

DOMException

CreateElementNS(String, String)

Element CreateElementNS(String arg0, String arg1)

Parameters

arg0 String

String

arg1 String

String

Returns

Element

Element

Exceptions

DOMException

CreateEntityReference(String)

EntityReference CreateEntityReference(String arg0)

Parameters

arg0 String

String

Returns

EntityReference

EntityReference

Exceptions

DOMException

CreateProcessingInstruction(String, String)

ProcessingInstruction CreateProcessingInstruction(String arg0, String arg1)

Parameters

arg0 String

String

arg1 String

String

Returns

ProcessingInstruction

ProcessingInstruction

Exceptions

DOMException

CreateTextNode(String)

Text CreateTextNode(String arg0)

Parameters

arg0 String

String

Returns

Text

Text

GetElementById(String)

Element GetElementById(String arg0)

Parameters

arg0 String

String

Returns

Element

Element

GetElementsByTagName(String)

NodeList GetElementsByTagName(String arg0)

Parameters

arg0 String

String

Returns

NodeList

NodeList

GetElementsByTagNameNS(String, String)

NodeList GetElementsByTagNameNS(String arg0, String arg1)

Parameters

arg0 String

String

arg1 String

String

Returns

NodeList

NodeList

ImportNode(Node, bool)

Node ImportNode(Node arg0, bool arg1)

Parameters

arg0 Node

Node

arg1 bool

bool

Returns

Node

Node

Exceptions

DOMException

NormalizeDocument()

void NormalizeDocument()

RenameNode(Node, String, String)

Node RenameNode(Node arg0, String arg1, String arg2)

Parameters

arg0 Node

Node

arg1 String

String

arg2 String

String

Returns

Node

Node

Exceptions

DOMException