Interface INode
- Namespace
- DotNetBrowser.Dom
- Assembly
- DotNetBrowser.dll
This interface is implemented by all INode implementations to support DOM event model.
public interface INode : IEventTarget, ISearchContext, IAutoDisposable
- Inherited Members
Properties
- Children
Gets the collection of the child nodes. Modifying this collection will lead to the DOM tree modification.
- Document
Gets the document instance containing this node.
- Frame
Gets the frame containing this node.
- NextSibling
Gets the next sibling node in the document tree.
- Parent
Gets the parent node.
- PreviousSibling
Gets the previous sibling node in the document tree.
- TextContent
Gets or sets the text content of the node and its descendants.
- Type
Gets the type of this node.
- XPath
Gets an XPath for the current Node.
Methods
- Click()
Simulates click on the current Node.
- CompareDocumentPosition(INode)
Compares position of the current node against another node in a DOM tree.
- Evaluate(string, XPathResultType)
Evaluates an XPath expression.