mscorlib(4.0.0.0) API with additions
PropertyAttributes.cs
2 
3 namespace System.Reflection
4 {
7  [Flags]
8  [ComVisible(true)]
9  [__DynamicallyInvokable]
10  public enum PropertyAttributes
11  {
13  [__DynamicallyInvokable]
14  None = 0x0,
16  [__DynamicallyInvokable]
17  SpecialName = 0x200,
19  ReservedMask = 0xF400,
21  [__DynamicallyInvokable]
22  RTSpecialName = 0x400,
24  [__DynamicallyInvokable]
25  HasDefault = 0x1000,
27  Reserved2 = 0x2000,
29  Reserved3 = 0x4000,
31  Reserved4 = 0x8000
32  }
33 }
Specifies that the field has a default value.
Definition: __Canon.cs:3
Specifies that the common language runtime should check name encoding.
PropertyAttributes
Defines the attributes that can be associated with a property. These attribute values are defined in ...
Specifies a reserved flag for common language runtime use only.
Specifies that the class can be serialized.
Specifies that the event is special in a way described by the name.