DomConstructorAttribute
This attribute is used to mark a constructor as being
accessible from scripts.
using System;
namespace AngleSharp.Attributes
{
[AttributeUsage(AttributeTargets.Constructor)]
public sealed class DomConstructorAttribute : Attribute
{
internal DomConstructorAttribute()
{
}
}
}