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