Table of Contents

Class Document

Namespace
Org.W3c.Dom
Assembly
MASES.Netdroid.dll
public class Document : Node, IDynamicMetaObjectProvider, IJVMBridgeCore, IEquatable<IJVMBridgeBaseInstance>, IDisposable, IJVMBridgeBaseStatic, IJVMBridgeBase, IJVMBridgeBaseInstance, IJVMBridgeDefinition, IDocument, INode
Inheritance
Document
Implements
Inherited Members
Extension Methods

Constructors

Document(IJVMBridgeBaseInitializer)

Initializer used internally by JCOBridge. Do not use directly.

[Obsolete("This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")]
public Document(IJVMBridgeBaseInitializer initializer)

Parameters

initializer IJVMBridgeBaseInitializer

Properties

BridgeClassName

Java class name to be instantiated

public override string BridgeClassName { get; }

Property Value

string

IsBridgeAbstract

true if the BridgeClassName is an abstract class, i.e. cannot be created an instance

public override bool IsBridgeAbstract { get; }

Property Value

bool

IsBridgeCloseable

true if the BridgeClassName implements java.lang.AutoCloseable

public override bool IsBridgeCloseable { get; }

Property Value

bool

IsBridgeInterface

true if the BridgeClassName is an interface, i.e. does not have any public constructor

public override bool IsBridgeInterface { get; }

Property Value

bool

IsBridgeStatic

true if the BridgeClassName is a static class, i.e. does not have any public constructor

public override bool IsBridgeStatic { get; }

Property Value

bool

Methods

AdoptNode(Node)

public Node AdoptNode(Node arg0)

Parameters

arg0 Node

Node

Returns

Node

Node

Exceptions

DOMException

CreateAttribute(String)

public Attr CreateAttribute(String arg0)

Parameters

arg0 String

String

Returns

Attr

Attr

Exceptions

DOMException

CreateAttributeNS(String, String)

public Attr CreateAttributeNS(String arg0, String arg1)

Parameters

arg0 String

String

arg1 String

String

Returns

Attr

Attr

Exceptions

DOMException

CreateCDATASection(String)

public CDATASection CreateCDATASection(String arg0)

Parameters

arg0 String

String

Returns

CDATASection

CDATASection

Exceptions

DOMException

CreateComment(String)

public Comment CreateComment(String arg0)

Parameters

arg0 String

String

Returns

Comment

Comment

CreateDocumentFragment()

public DocumentFragment CreateDocumentFragment()

Returns

DocumentFragment

DocumentFragment

CreateElement(String)

public Element CreateElement(String arg0)

Parameters

arg0 String

String

Returns

Element

Element

Exceptions

DOMException

CreateElementNS(String, String)

public Element CreateElementNS(String arg0, String arg1)

Parameters

arg0 String

String

arg1 String

String

Returns

Element

Element

Exceptions

DOMException

CreateEntityReference(String)

public EntityReference CreateEntityReference(String arg0)

Parameters

arg0 String

String

Returns

EntityReference

EntityReference

Exceptions

DOMException

CreateProcessingInstruction(String, String)

public ProcessingInstruction CreateProcessingInstruction(String arg0, String arg1)

Parameters

arg0 String

String

arg1 String

String

Returns

ProcessingInstruction

ProcessingInstruction

Exceptions

DOMException

CreateTextNode(String)

public Text CreateTextNode(String arg0)

Parameters

arg0 String

String

Returns

Text

Text

GetDoctype()

public DocumentType GetDoctype()

Returns

DocumentType

DocumentType

GetDocumentElement()

public Element GetDocumentElement()

Returns

Element

Element

GetDocumentURI()

public String GetDocumentURI()

Returns

String

String

GetDomConfig()

public DOMConfiguration GetDomConfig()

Returns

DOMConfiguration

DOMConfiguration

GetElementById(String)

public Element GetElementById(String arg0)

Parameters

arg0 String

String

Returns

Element

Element

GetElementsByTagName(String)

public NodeList GetElementsByTagName(String arg0)

Parameters

arg0 String

String

Returns

NodeList

NodeList

GetElementsByTagNameNS(String, String)

public NodeList GetElementsByTagNameNS(String arg0, String arg1)

Parameters

arg0 String

String

arg1 String

String

Returns

NodeList

NodeList

GetImplementation()

public DOMImplementation GetImplementation()

Returns

DOMImplementation

DOMImplementation

GetInputEncoding()

public String GetInputEncoding()

Returns

String

String

GetStrictErrorChecking()

public bool GetStrictErrorChecking()

Returns

bool

bool

GetXmlEncoding()

public String GetXmlEncoding()

Returns

String

String

GetXmlStandalone()

public bool GetXmlStandalone()

Returns

bool

bool

GetXmlVersion()

public String GetXmlVersion()

Returns

String

String

ImportNode(Node, bool)

public Node ImportNode(Node arg0, bool arg1)

Parameters

arg0 Node

Node

arg1 bool

bool

Returns

Node

Node

Exceptions

DOMException

NormalizeDocument()

public void NormalizeDocument()

RenameNode(Node, String, String)

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

Parameters

arg0 Node

Node

arg1 String

String

arg2 String

String

Returns

Node

Node

Exceptions

DOMException

SetDocumentURI(String)

public void SetDocumentURI(String arg0)

Parameters

arg0 String

String

SetStrictErrorChecking(bool)

public void SetStrictErrorChecking(bool arg0)

Parameters

arg0 bool

bool

SetXmlStandalone(bool)

public void SetXmlStandalone(bool arg0)

Parameters

arg0 bool

bool

Exceptions

DOMException

SetXmlVersion(String)

public void SetXmlVersion(String arg0)

Parameters

arg0 String

String

Exceptions

DOMException