Table of Contents

Interface INonDocumentTypeChildNode

Namespace
AngleSharp.Dom
Assembly
AngleSharp.dll

Extensions to ChildNode nodes that are not document type nodes.

[DomName("NonDocumentTypeChildNode")]
[DomNoInterfaceObject]
public interface INonDocumentTypeChildNode
Extension Methods

Properties

NextElementSibling

Gets the Element immediately following this ChildNode in its parent's children list, or null if there is no Element in the list following this ChildNode.

[DomName("nextElementSibling")]
IElement? NextElementSibling { get; }

Property Value

IElement

PreviousElementSibling

Gets the Element immediately prior to this ChildNode in its parent's children list, or null if there is no Element in the list prior to this ChildNode.

[DomName("previousElementSibling")]
IElement? PreviousElementSibling { get; }

Property Value

IElement