AttributeUsageAttribute.AllowMultiple Property
Definition
Gets or sets a Boolean value indicating whether more than one instance of the indicated attribute can be specified for a single program element.
public:
property bool AllowMultiple { bool get(); void set(bool value); };
public bool AllowMultiple { get; set; }
member this.AllowMultiple : bool with get, set
Public Property AllowMultiple As Boolean
Property Value
true
if more than one instance is allowed to be specified; otherwise, false
. The default is false
.
Remarks
An attribute that can be specified more than once for a program element is called a multi-use attribute. An attribute that can be specified only once is called a single-use attribute.