Attribute specification is the application of a previously defined attribute to a declaration. An attribute is a piece of additional declarative information that is specified for a declaration. Attributes can be specified at global scope (to specify attributes on the containing assembly) and for type-declarations (16.5), class-member-declarations (17.2), interface-member-declarations (20.2), enum-member-declarations (21.1), accessor-declarations (17.6.2), event-accessor-declarations (17.7), and formal-parameter-lists (17.5.1).
Attributes are specified in attribute sections. An attribute section consists of a pair of square brackets, which surround a comma-separated list of one or more attributes. The order in which attributes are specified in such a list, and the order in which sections attached to the same program entity are arranged, is not significant. For instance, the attribute specifications [A][B], [B][A], [A, B], and [B, A] are equivalent. global-attributes : global-attribute-sectionsglobal-attribute-sections : global-attribute-sectionglobal-attribute-sectionsglobal-attribute-sectionglobal-attribute-section : [global-attribute-target-specifierattribute-list][global-attribute-target-specifierattribute-list,]global-attribute-target-specifier : global-attribute-target:global-attribute-target : assembly attributes : attribute-sectionsattribute-sections : attribute-sectionattribute-sectionsattribute-sectionattribute-section : [attribute-target-specifierattribute-list][attribute-target-specifierattribute-list,]attribute-target-specifier : attribute-target:attribute-target : field event method param property return type attribute-list : attributeattribute-list,attributeattribute : attribute-nameattribute-argumentsattribute-name : type-nameattribute-arguments : (positional-argument-list)(positional-argument-list,named-argument-list)(named-argument-list)positional-argument-list : positional-argumentpositional-argument-list,positional-argumentpositional-argument : attribute-argument-expressionnamed-argument-list : named-argumentnamed-argument-list,named-argumentnamed-argument : identifier=attribute-argument-expressionattribute-argument-expression : expression
An attribute consists of an attribute-name and an optional list of positional and named arguments. The positional arguments (if any) precede the named arguments. A positional argument consists of an attribute-argument-expression; a named argument consists of a name, followed by an equal sign, followed by an attribute-argument-expression, which, together, are constrained by the same rules as simple assignment.) The order of named arguments is not significant.
The attribute-name identifies an attribute class. If the form of attribute-name is type-name then this name must refer to an attribute class. Otherwise, a compile-time error occurs. [Example: The example results in a compile-time error because it attempts to use Class1 as an attribute class when Class1 is not an attribute class. end example]
Certain contexts permit the specification of an attribute on more than one target. A program can explicitly specify the target by including an attribute-target-specifier. When an attribute is placed at the global level, a global-attribute-target-specifier is required. In all other locations, a reasonable default is applied, but an attribute-target-specifier can be used to affirm or override the default in certain ambiguous cases (or to just affirm the default in non-ambiguous cases). Thus, typically, attribute-target-specifiers can be omitted except at the global level. The potentially ambiguous contexts are resolved as follows: An attribute specified on a delegate declaration can apply either to the delegate being declared or to its return value. In the absence of an attribute-target-specifier, the attribute applies to the delegate. The presence of the type attribute-target-specifier indicates that the attribute applies to the delegate; the presence of the return attribute-target-specifier indicates that the attribute applies to the return value. An attribute specified on a method declaration can apply either to the method being declared or to its return value. In the absence of an attribute-target-specifier, the attribute applies to the method. The presence of the method attribute-target-specifier indicates that the attribute applies to the method; the presence of the return attribute-target-specifier indicates that the attribute applies to the return value. An attribute specified on an operator declaration can apply either to the operator being declared or to its return value of this declaration. In the absence of an attribute-target-specifier, the attribute applies to the operator. The presence of the type attribute-target-specifier indicates that the attribute applies to the operator; the presence of the return attribute-target-specifier indicates that the attribute applies to the return value. An attribute specified on an event declaration that omits event accessors can apply to the event being declared, to the associated field (if the event is not abstract), or to the associated add and remove methods. In the absence of an attribute-target-specifier, the attribute applies to the event declaration. The presence of the event attribute-target-specifier indicates that the attribute applies to the event; the presence of the field attribute-target-specifier indicates that the attribute applies to the field; and the presence of the method attribute-target-specifier indicates that the attribute applies to the methods. An attribute specified on a get accessor declaration for a property or indexer declaration can apply either to the associated method or to its return value. In the absence of an attribute-target-specifier, the attribute applies to the method. The presence of the method attribute-target-specifier indicates that the attribute applies to the method; the presence of the return attribute-target-specifier indicates that the attribute applies to the return value. An attribute specified on a set accessor for a property or indexer declaration can apply either to the associated method or to its lone implicit parameter. In the absence of an attribute-target-specifier, the attribute applies to the method. The presence of the method attribute-target-specifier indicates that the attribute applies to the method; the presence of the param attribute-target-specifier indicates that the attribute applies to the parameter. An attribute specified on an add or remove accessor declaration for an event declaration can apply either to the associated method or to its lone parameter. In the absence of an attribute-target-specifier, the attribute applies to the method. The presence of the method attribute-target-specifier indicates that the attribute applies to the method; the presence of the param attribute-target-specifier indicates that the attribute applies to the parameter.
An implementation may accept other attribute target specifiers, the purpose of which is implementation-defined. However, an implementation that does not recognize such a target, shall issue a warning.
By convention, attribute classes are named with a suffix of Attribute. An attribute-name of the form type-name may either include or omit this suffix. If an attribute class is found both with and without this suffix, an ambiguity is present, and a compile-time error shall be issued. If the attribute-name is spelled using a verbatim identifier (9.4.2), then only an attribute without a suffix is matched, thus enabling such an ambiguity to be resolved. [Example: The example shows two attribute classes named X and XAttribute. The attribute [X] is ambiguous, since it could refer to either X or XAttribute. Using a verbatim identifier allows the exact intent to be specified in such rare cases. The attribute [XAttribute] is not ambiguous (although it would be if there was an attribute class named XAttributeAttribute!). If the declaration for class X is removed, then both attributes refer to the attribute class named XAttribute, as follows: end example]
It is a compile-time error to use a single-use attribute class more than once on the same entity. [Example: The example results in a compile-time error because it attempts to use HelpString, which is a single-use attribute class, more than once on the declaration of Class1. end example]
An expression E is an attribute-argument-expression if all of the following statements are true: The type of E is an attribute parameter type (24.1.3). At compile-time, the value of E can be resolved to one of the following: A constant value. A System.Type object. A one-dimensional array of attribute-argument-expressions.
[Example: For example: end example]