AngleSharp by AngleSharp

<PackageReference Include="AngleSharp" Version="1.1.0-alpha-379" />

.NET API 955,904 bytes

 IParentNode

public interface IParentNode
Defines the ParentNode interface that is implemented by possible parents.
using AngleSharp.Attributes; using System.Runtime.CompilerServices; namespace AngleSharp.Dom { [System.Runtime.CompilerServices.NullableContext(1)] [DomName("ParentNode")] [DomNoInterfaceObject] public interface IParentNode { [DomName("children")] IHtmlCollection<IElement> Children { get; } [System.Runtime.CompilerServices.Nullable(2)] [DomName("firstElementChild")] IElement FirstElementChild { [System.Runtime.CompilerServices.NullableContext(2)] get; } [System.Runtime.CompilerServices.Nullable(2)] [DomName("lastElementChild")] IElement LastElementChild { [System.Runtime.CompilerServices.NullableContext(2)] get; } [DomName("childElementCount")] int ChildElementCount { get; } [DomName("append")] void Append(params INode[] nodes); [DomName("prepend")] void Prepend(params INode[] nodes); [DomName("querySelector")] [return: System.Runtime.CompilerServices.Nullable(2)] IElement QuerySelector(string selectors); [DomName("querySelectorAll")] IHtmlCollection<IElement> QuerySelectorAll(string selectors); } }