.NET API 885,248 bytes
AdjacentPosition
Enumeration with possible values for the adjacent position insertion.
using AngleSharp.
Attributes;
namespace AngleSharp.
Dom
{
public enum AdjacentPosition :
byte
{
[
DomName(
"beforebegin")]
BeforeBegin,
[
DomName(
"afterbegin")]
AfterBegin,
[
DomName(
"beforeend")]
BeforeEnd,
[
DomName(
"afterend")]
AfterEnd
}
}