AngleSharp by Florian Rappl

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

.NET API 1,174,016 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 { [DomNoInterfaceObject] [DomName("ChildNode")] 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(); } }