AngleSharp by AngleSharp

<PackageReference Include="AngleSharp" Version="1.3.0-beta.468" />

.NET API 958,464 bytes

 IChildNode

public interface IChildNode
The ChildNode interface contains methods that are particular to Node objects that can have a parent.
using AngleSharp.Attributes; using System.Runtime.CompilerServices; namespace AngleSharp.Dom { [System.Runtime.CompilerServices.NullableContext(1)] [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(); } }