AngleSharp by AngleSharp

<PackageReference Include="AngleSharp" Version="0.9.10" />

.NET API 1,230,336 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(); } }