AngleSharp by AngleSharp

<PackageReference Include="AngleSharp" Version="0.14.0-alpha-809" />

 DomInitDictAttribute

public sealed class DomInitDictAttribute : Attribute
This attribute decorates official DOM methods as specified by the W3C. It tells scripting engines that bags with objects should be provided, which have to be expanded to be used as arguments.
using System; namespace AngleSharp.Attributes { [AttributeUsage(AttributeTargets.Constructor | AttributeTargets.Method, Inherited = false)] public sealed class DomInitDictAttribute : Attribute { public int Offset { get; set; } public bool IsOptional { get; set; } public DomInitDictAttribute(int offset = 0, bool optional = false) { Offset = offset; IsOptional = optional; } } }