The attribute AttributeUsage (24.4.1) is used to describe how an attribute class can be used.
AttributeUsage has a positional parameter (24.1.2) that enables an attribute class to specify the kinds of declarations on which it can be used. [Example: The example defines an attribute class named SimpleAttribute that can be placed on class-declarations and interface-declarations only. The example shows several uses of the Simple attribute. Although this attribute is defined with the name SimpleAttribute, when this attribute is used, the Attribute suffix may be omitted, resulting in the short name Simple. Thus, the example above is semantically equivalent to the following end example]
AttributeUsage has a named parameter (24.1.2), called AllowMultiple, which indicates whether the attribute can be specified more than once for a given entity. If AllowMultiple for an attribute class is true, then that class is a multi-use attribute class, and can be specified more than once on an entity. If AllowMultiple for an attribute class is false or it is unspecified, then that class is a single-use attribute class, and can be specified at most once on an entity.
[Example: The example defines a multi-use attribute class named AuthorAttribute. The example shows a class declaration with two uses of the Author attribute. end example]
AttributeUsage has another named parameter (24.1.2), called Inherited, which indicates whether the attribute, when specified on a base class, is also inherited by classes that derive from that base class. If Inherited for an attribute class is true, then that attribute is inherited. If Inherited for an attribute class is false or it is unspecified, then that attribute is not inherited.
An attribute class X not having an AttributeUsage attribute attached to it, as in is equivalent to the following: