INonElementParentNode
Extensions to ParentNode nodes that are not Element nodes.
using AngleSharp.Attributes;
using System.Runtime.CompilerServices;
namespace AngleSharp.Dom
{
[System.Runtime.CompilerServices.NullableContext(1)]
[DomName("NonElementParentNode")]
[DomNoInterfaceObject]
public interface INonElementParentNode
{
[DomName("getElementById")]
[return: System.Runtime.CompilerServices.Nullable(2)]
IElement GetElementById(string elementId);
}
}