AngleSharp by AngleSharp

<PackageReference Include="AngleSharp" Version="0.13.0-alpha-742" />

.NET API 827,904 bytes

 IChildNode

public interface IChildNode
The ChildNode interface contains methods that are particular to Node objects that can have a parent.
using AngleSharp.Attributes; namespace AngleSharp.Dom { [DomName("ChildNode")] [DomNoInterfaceObject] public interface IChildNode { [DomName("before")] void Before(params INode[] nodes); [DomName("after")] void After(params INode[] nodes); [DomName("replace")] void Replace(params INode[] nodes); [DomName("remove")] void Remove(); } }