INode public interface INode : IEventTarget, IMarkupFormattable Documentation Code string BaseUri { get; } Url BaseUrl { get; } INodeList ChildNodes { get; } INode FirstChild { get; } bool HasChildNodes { get; } INode LastChild { get; } INode NextSibling { get; } string NodeName { get; } NodeType NodeType { get; } string NodeValue { get; set; } IDocument Owner { get; } INode Parent { get; } IElement ParentElement { get; } INode PreviousSibling { get; } string TextContent { get; set; } INode AppendChild(INode child) INode Clone(bool deep = true) DocumentPositions CompareDocumentPosition(INode otherNode) bool Contains(INode otherNode) bool Equals(INode otherNode) INode InsertBefore(INode newElement, INode referenceElement) bool IsDefaultNamespace(string namespaceUri) string LookupNamespaceUri(string prefix) string LookupPrefix(string namespaceUri) void Normalize() INode RemoveChild(INode child) INode ReplaceChild(INode newChild, INode oldChild)