AngleSharp by AngleSharp

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

.NET API 1,204,224 bytes

 IParentNode

public interface IParentNode
Defines the ParentNode interface that is implemented by possible parents.
int ChildElementCount { get; }

Gets the number of child elements.

Gets the child elements.

Gets the first child element of this element.

Gets the last child element of this element.

void Append(INode[] nodes)

Appends nodes to current document.

void Prepend(INode[] nodes)

Prepends nodes to the current document.

IElement QuerySelector(string selectors)

Returns the first element within the document (using depth-first pre-order traversal of the document's nodes) that matches the specified group of selectors.

Returns a list of the elements within the document (using depth-first pre-order traversal of the document's nodes) that match the specified group of selectors.