mscorlib(4.0.0.0) API with additions
FlagsAttribute.cs
2 
3 namespace System
4 {
7  [AttributeUsage(AttributeTargets.Enum, Inherited = false)]
8  [ComVisible(true)]
9  [__DynamicallyInvokable]
10  public class FlagsAttribute : Attribute
11  {
13  [__DynamicallyInvokable]
14  public FlagsAttribute()
15  {
16  }
17  }
18 }
Represents the base class for custom attributes.
Definition: Attribute.cs:15
Definition: __Canon.cs:3
FlagsAttribute()
Initializes a new instance of the T:System.FlagsAttribute class.
Indicates that an enumeration can be treated as a bit field; that is, a set of flags.
AttributeTargets
Specifies the application elements on which it is valid to apply an attribute.
Specifies that the class can be serialized.