EntityReference Class

EntityReference class

EntityReference nodes may be used to represent an entity reference in the tree.

public class EntityReference : Node

Properties

NameDescription
virtual BaseURI { get; }The read-only baseURI property of the Node interface returns the absolute base URL of the document containing the node.
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.
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.
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
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.
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.
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.
virtual OwnerDocument { get; }The read-only ownerDocument property of the Node interface returns the top-level document object of the node.
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.
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.
virtual TextContent { get; set; }The textContent property of the Node interface represents the text content of the node and its descendants.

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.
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.
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.
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.
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.
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.
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.

See Also