DomExposedAttribute
This attribute is used to determine the hosting interface.
using System;
namespace AngleSharp.Attributes
{
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Interface, AllowMultiple = true, Inherited = false)]
public sealed class DomExposedAttribute : Attribute
{
public string Target { get; set; }
public DomExposedAttribute(string target)
{ get; }
}
}