Document Class

Document class

The Document represents the entire HTML, XML or SVG document. Conceptually, it is the root of the document tree, and provides the primary access to the document’s data.

public class Document : Node, IDocumentEvent, IDocumentStyle, IDocumentTraversal, 
    IGlobalEventHandlers, INonElementParentNode, IParentNode, IXPathEvaluator

Properties

NameDescription
override BaseURI { get; }The absolute base URI of this node or null if the implementation wasn’t able to obtain an absolute URI.
CharacterSet { get; }Gets the document’s encoding.
Charset { get; }Gets the document’s encoding.
ChildElementCount { get; }Returns the current number of element nodes that are children of this element. 0 if this element has no child nodes that are of nodeType 1.
ChildNodes { get; }The read-only childNodes property of the Node interface returns a live NodeList of child nodes of the given element where the first child node is assigned index 0. Child nodes include elements, text and comments.
Children { get; }Returns the child elements.
ContentType { get; }Gets the document content type.
Context { get; }Gets the current browsing context.
DefaultView { get; }The defaultView IDL attribute of the Document interface, on getting, must return this Document’s browsing context’s WindowProxy object, if this Document has an associated browsing context, or null otherwise.
Doctype { get; }The Document Type Declaration associated with this document.
DocumentElement { get; }This is a convenience attribute that allows direct access to the child node that is the document element of the document.
DocumentURI { get; }The location of the document or null if undefined or if the Document was created using DOMImplementation.createDocument.
FirstChild { get; }The read-only firstChild property of the Node interface returns the node’s first child in the tree, or null if the node has no children.
FirstElementChild { get; }Returns the first child element node of this element. null if this element has no child elements.
Implementation { get; }The DOMImplementation object that handles this document.
InputEncoding { get; }Gets the document’s encoding.
LastChild { get; }The read-only lastChild property of the Node interface returns the last child of the node. If its parent is an element, then the child is generally an element node, a text node, or a comment node. It returns null if there are no child elements
LastElementChild { get; }Returns the last child element node of this element. null if this element has no child elements.
virtual LocalName { get; }Returns the local part of the qualified name of this node. For nodes of any type other than ELEMENT_NODE and ATTRIBUTE_NODE and nodes created with a DOM Level 1 method, such as Document.createElement(), this is always null.
Location { get; }The location of the document.
virtual NamespaceURI { get; }The Element.namespaceURI read-only property returns the namespace URI of the element, or null if the element is not in a namespace.
NextElementSibling { get; }Returns the next sibling element node of this element. null if this element has no element sibling nodes that come after this one in the document tree.
NextSibling { get; }The read-only nextSibling property of the Node interface returns the node immediately following the specified one in their parent’s childNodes, or returns null if the specified node is the last child in the parent element.
override NodeName { get; }The name of this node, depending on its type.
override NodeType { get; }A code representing the type of the underlying object.
virtual NodeValue { get; set; }The nodeValue property of the Node interface returns or sets the value of the current node.
Origin { get; }Gets the document origin.
override OwnerDocument { get; }Gets the owner document.
ParentElement { get; }The read-only parentElement property of Node interface returns the DOM node’s parent Element, or null if the node either has no parent, or its parent isn’t a DOM Element.
ParentNode { get; }The read-only parentNode property of the Node interface returns the parent of the specified node in the DOM tree.
virtual Prefix { get; set; }The prefix read-only property returns the namespace prefix of the specified element, or null if no prefix is specified.
PreviousElementSibling { get; }Returns the previous sibling element node of this element. null if this element has no element sibling nodes that come before this one in the document tree.
PreviousSibling { get; }The read-only previousSibling property of the Node interface returns the node immediately preceding the specified one in its parent’s childNodes list, or null if the specified node is the first in that list.
ReadyState { get; }Returns the document readiness. The “loading” while the Document is loading, “interactive” once it is finished parsing but still loading sub-resources, and “complete” once it has loaded.
StrictErrorChecking { get; set; }An attribute specifying whether error checking is enforced or not. When set to false, the implementation is free to not test every possible error case normally defined on DOM operations, and not raise any DOMException on DOM operations or report errors while using Document.normalizeDocument(). In case of error, the behavior is undefined. This attribute is true by default.
StyleSheets { get; }A list containing all the style sheets explicitly linked into or embedded in a document. For HTML documents, this includes external style sheets, included via the HTML LINK element, and inline STYLE elements.
virtual TextContent { get; set; }The textContent property of the Node interface represents the text content of the node and its descendants.
XmlStandalone { get; set; }An attribute specifying, as part of the XML declaration, whether this document is standalone. This is false when unspecified.
XmlVersion { get; set; }An attribute specifying, as part of the XML declaration, the version number of this document. If there is no declaration and if this document supports the “XML” feature, the value is “1.0”. If this document does not support the “XML” feature, the value is always null.

Methods

NameDescription
AddEventListener(string, IEventListener)The addEventListener() method of the EventTarget interface sets up a function that will be called whenever the specified event is delivered to the target.
AddEventListener(string, DOMEventHandler, bool)The addEventListener() method of the EventTarget interface sets up a function that will be called whenever the specified event is delivered to the target.
AddEventListener(string, IEventListener, bool)The addEventListener() method of the EventTarget interface sets up a function that will be called whenever the specified event is delivered to the target.
AppendChild(Node)The appendChild() method of the Node interface adds a node to the end of the list of children of a specified parent node. If the given child is a reference to an existing node in the document, appendChild() moves it from its current position to the new position (there is no requirement to remove the node from its parent node before appending it to some other node).
CloneNode()The cloneNode() method of the Node interface returns a duplicate of the node on which this method was called. Its parameter controls if the subtree contained in a node is also cloned or not.
CloneNode(bool)The cloneNode() method of the Node interface returns a duplicate of the node on which this method was called. Its parameter controls if the subtree contained in a node is also cloned or not.
CreateAttribute(string)The Document.createAttribute() method creates a new attribute node, and returns it. The object created a node implementing the Attr interface. The DOM does not enforce what sort of attributes can be added to a particular element in this manner.
CreateAttributeNS(string, string)The Document.createAttribute() method creates a new attribute node, and returns it. The object created a node implementing the Attr interface. The DOM does not enforce what sort of attributes can be added to a particular element in this manner.
CreateCDATASection(string)Creates a CDATASection node whose value is the specified string.
CreateComment(string)Creates a Comment node given the specified string.
CreateDocumentFragment()Creates a new empty DocumentFragment into which DOM nodes can be added to build an offscreen DOM tree.
CreateDocumentType(string, string, string, string)The method returns a DocumentType object which can either be used with DOMImplementation.createDocument upon document creation or can be put into the document via methods like Node.insertBefore() or Node.replaceChild().
CreateElement(string)In an HTML document, the document.createElement() method creates the HTML element specified by tagName, or an HTMLUnknownElement if tagName isn’t recognized.
CreateElementNS(string, string)Creates an element of the given qualified name and namespace URI.
CreateEntityReference(string)Creates an EntityReference object. In addition, if the referenced entity is known, the child list of the EntityReference node is made the same as that of the corresponding Entity node.
CreateEvent(string)Creates an Event of a type supported by the implementation.
CreateExpression(string, IXPathNSResolver)Creates a parsed XPath expression with resolved namespaces. This is useful when an expression will be reused in an application since it makes it possible to compile the expression string into a more efficient internal form and preresolve all namespace prefixes which occur within the expression.
CreateNodeIterator(Node)Create a new NodeIterator over the subtree rooted at the specified node.
CreateNodeIterator(Node, long)Create a new NodeIterator over the subtree rooted at the specified node.
CreateNodeIterator(Node, long, INodeFilter)Create a new NodeIterator over the subtree rooted at the specified node.
CreateNSResolver(Node)Adapts any DOM node to resolve namespaces so that an XPath expression can be easily evaluated relative to the context of the node where it appeared within the document. This adapter works like the DOM Level 3 method lookupNamespaceURI on nodes in resolving the namespaceURI from a given prefix using the current information available in the node’s hierarchy at the time lookupNamespaceURI is called, also correctly resolving the implicit xml prefix.
CreateProcessingInstruction(string, string)Creates a ProcessingInstruction node given the specified name and data strings.
CreateTextNode(string)Creates a Text node given the specified string.
CreateTreeWalker(Node)Create a new TreeWalker over the subtree rooted at the specified node.
CreateTreeWalker(Node, long)Create a new TreeWalker over the subtree rooted at the specified node.
CreateTreeWalker(Node, long, INodeFilter)Create a new TreeWalker over the subtree rooted at the specified node.
DispatchEvent(Event)Dispatches an Event at the specified EventTarget, (synchronously) invoking the affected EventListeners in the appropriate order. The normal event processing rules (including the capturing and optional bubbling phase) also apply to events dispatched manually with dispatchEvent().
Dispose()Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
Evaluate(string, Node, IXPathNSResolver, XPathResultType, object)Evaluates an XPath expression string and returns a result of the specified type if possible.
GetElementById(string)The Document method getElementById() returns an Element object representing the element whose id property matches the specified string. Since element IDs are required to be unique if specified, they’re a useful way to get access to a specific element quickly.
GetElementsByClassName(string)The getElementsByClassName method of Document interface returns an array-like object of all child elements which have all of the given class name(s).
GetElementsByTagName(string)The getElementsByTagName method of Document interface returns an HTMLCollection of elements with the given tag name.
GetElementsByTagNameNS(string, string)Returns a list of elements with the given tag name belonging to the given namespace. The complete document is searched, including the root node.
virtual GetPlatformType()This method is used to retrieve the ECMAScript object .
HasChildNodes()The hasChildNodes() method of the Node interface returns a boolean value indicating whether the given Node has child nodes or not.
ImportNode(Node, bool)Imports a node from another document to this document, without altering or removing the source node from the original document; this method creates a new copy of the source node.
InsertBefore(Node, Node)The insertBefore() method of the Node interface inserts a node before a reference node as a child of a specified parent node.
IsDefaultNamespace(string)The isDefaultNamespace() method of the Node interface accepts a namespace URI as an argument. It returns a boolean value that is true if the namespace is the default namespace on the given node and false if not.
IsEqualNode(Node)The isEqualNode() method of the Node interface tests whether two nodes are equal. Two nodes are equal when they have the same type, defining characteristics (for elements, this would be their ID, number of children, and so forth), its attributes match, and so on. The specific set of data points that must match varies depending on the types of the nodes.
IsSameNode(Node)The isSameNode() method of the Node interface is a legacy alias the for the === strict equality operator. That is, it tests whether two nodes are the same (in other words, whether they reference the same object).
LookupNamespaceURI(string)The lookupNamespaceURI() method of the Node interface takes a prefix as parameter and returns the namespace URI associated with it on the given node if found (and null if not).
LookupPrefix(string)The lookupPrefix() method of the Node interface returns a String containing the prefix for a given namespace URI, if present, and null if not. When multiple prefixes are possible, the first prefix is returned.
Navigate(RequestMessage)Loads the document based on specified request object, replacing the previous content.
Navigate(string)Loads the document at the specified Uniform Resource Locator (URL) into the current instance, replacing the previous content.
Navigate(Url)Loads the document at the specified Uniform Resource Locator (URL) into the current instance, replacing the previous content.
Navigate(Stream, string)Loads the document from specified content and using baseUri to resolve relative resources, replacing the previous content. Document loading starts from the current position in the stream.
Navigate(Stream, Url)Loads the document from specified content and using baseUri to resolve relative resources, replacing the previous content. Document loading starts from the current position in the stream.
Navigate(string, string)Loads the document from specified content and using baseUri to resolve relative resources, replacing the previous content.
Navigate(string, Url)Loads the document from specified content and using baseUri to resolve relative resources, replacing the previous content.
Normalize()Puts all Text nodes in the full depth of the sub-tree underneath this Node, including attribute nodes, into a “normal” form where only structure (e.g., elements, comments, processing instructions, CDATA sections, and entity references) separates Text nodes, i.e., there are neither adjacent Text nodes nor empty Text nodes. This can be used to ensure that the DOM view of a document is the same as if it were saved and re-loaded, and is useful when operations (such as XPointer [XPointer] lookups) that depend on a particular document tree structure are to be used. If the parameter “normalize-characters” of the DOMConfiguration object attached to the Node.ownerDocument is true, this method will also fully normalize the characters of the Text nodes.
QuerySelector(string)Returns the first Element in document, which match selector
QuerySelectorAll(string)Returns a NodeList of all the Elements in document, which match selector
RemoveChild(Node)The removeChild() method of the Node interface removes a child node from the DOM and returns the removed node.
RemoveEventListener(string, IEventListener)This method allows the removal of event listeners from the event target. If an is removed from an while it is processing an event, it will not be triggered by the current actions. Event Listeners can never be invoked after being removed.
RemoveEventListener(string, DOMEventHandler, bool)This method allows the removal of event listeners from the event target. If an is removed from an while it is processing an event, it will not be triggered by the current actions. Event Listeners can never be invoked after being removed.
RemoveEventListener(string, IEventListener, bool)This method allows the removal of event listeners from the event target. If an is removed from an while it is processing an event, it will not be triggered by the current actions. Event Listeners can never be invoked after being removed.
virtual RenderTo(IDevice)This method is used to render the contents of the current document to a specified graphical device.
ReplaceChild(Node, Node)Replaces the child node oldChild with newChild in the list of children, and returns the oldChild node. If newChild is a DocumentFragment object, oldChild is replaced by all of the DocumentFragment children, which are inserted in the same order. If the newChild is already in the tree, it is first removed.
override ToString()Returns a String that represents this instance.
Write(params string[])Write a string of text to a document stream opened by open(). Note that the function will produce a document which is not necessarily driven by a DTD and therefore might be produce an invalid result in the context of the document.
WriteLn(params string[])Write a string of text followed by a newline character to a document stream opened by open(). Note that the function will produce a document which is not necessarily driven by a DTD and therefore might be produce an invalid result in the context of the document

Events

NameDescription
event OnAbortGets or sets event handler for OnAbort event.
event OnBlurGets or sets event handler for OnBlur event.
event OnCancelGets or sets event handler for OnCancel event.
event OnCanplayGets or sets event handler for OnCanplay event.
event OnCanPlayThroughGets or sets event handler for OnCanPlayThrough event.
event OnChangeGets or sets event handler for OnChange event.
event OnClickGets or sets event handler for OnClick event.
event OnCueChangeGets or sets event handler for OnCueChange event.
event OnDblClickGets or sets event handler for OnDblClick event.
event OnDurationChangeGets or sets event handler for OnDurationChange event.
event OnEmptiedGets or sets event handler for OnEmptied event.
event OnEndedGets or sets event handler for OnEnded event.
event OnErrorGets or sets event handler for OnError event.
event OnFocusGets or sets event handler for OnFocus event.
event OnInputGets or sets event handler for OnInput event.
event OnInvalidGets or sets event handler for OnInvalid event.
event OnKeyDownGets or sets event handler for OnKeyDown event.
event OnKeyPressGets or sets event handler for OnKeyPress event.
event OnKeyUpGets or sets event handler for OnKeyUp event.
event OnLoadGets or sets event handler for OnLoad event.
event OnLoadedDataGets or sets event handler for OnLoadedData event.
event OnLoadedMetadataGets or sets event handler for OnLoadedMetadata event.
event OnLoadStartGets or sets event handler for OnLoadStart event.
event OnMouseDownGets or sets event handler for OnMouseDown event.
event OnMouseEnterGets or sets event handler for OnMouseEnter event.
event OnMouseLeaveGets or sets event handler for OnMouseLeave event.
event OnMouseMoveGets or sets event handler for OnMouseMove event.
event OnMouseOutGets or sets event handler for OnMouseOut event.
event OnMouseOverGets or sets event handler for OnMouseOver event.
event OnMouseUpGets or sets event handler for OnMouseUp event.
event OnMouseWheelGets or sets event handler for OnMouseWheel event.
event OnPauseGets or sets event handler for OnPause event.
event OnPlayGets or sets event handler for OnPlay event.
event OnPlayingGets or sets event handler for OnPlaying event.
event OnProgressGets or sets event handler for OnProgress event.
event OnRateChangeGets or sets event handler for OnRateChange event.
event OnReadyStateChangeGets or sets event handler for OnReadyStateChange event.
event OnResetGets or sets event handler for OnReset event.
event OnResizeGets or sets event handler for OnResize event.
event OnScrollGets or sets event handler for OnScroll event.
event OnSeekedGets or sets event handler for OnSeeked event.
event OnSeekingGets or sets event handler for OnSeeking event.
event OnSelectGets or sets event handler for OnSelect event.
event OnShowGets or sets event handler for OnShow event.
event OnStalledGets or sets event handler for OnStalled event.
event OnSubmitGets or sets event handler for OnSubmit event.
event OnSuspendGets or sets event handler for OnSuspend event.
event OnTimeUpdateGets or sets event handler for OnTimeUpdate event.
event OnToggleGets or sets event handler for OnToggle event.
event OnVolumeChangeGets or sets event handler for OnVolumeChange event.
event OnWaitingGets or sets event handler for OnWaiting event.

See Also