System.AttributeUsageAttribute
namespace System
{
public sealed class AttributeUsageAttribute :
Attribute
{
public bool AllowMultiple { get; set; }
public bool Inherited { get; set; }
public AttributeTargets ValidOn { get; }
public AttributeUsageAttribute(
AttributeTargets validOn);
}
}