DomAccessorAttribute
This attribute decorates official DOM objects as specified by the W3C.
You could use it to check if the given property or method should be
placed on special locations, e.g. as a getter, setter or handled by a
delete call.
using System;
namespace AngleSharp.Attributes
{
[AttributeUsage(AttributeTargets.Method | AttributeTargets.Property)]
public sealed class DomAccessorAttribute : Attribute
{
public Accessors Type { get; set; }
public DomAccessorAttribute(Accessors type)
{
Type = type;
}
}
}