mscorlib(4.0.0.0) API with additions
ParameterAttributes.cs
2 
3 namespace System.Reflection
4 {
7  [Flags]
8  [ComVisible(true)]
9  [__DynamicallyInvokable]
10  public enum ParameterAttributes
11  {
13  [__DynamicallyInvokable]
14  None = 0x0,
16  [__DynamicallyInvokable]
17  In = 0x1,
19  [__DynamicallyInvokable]
20  Out = 0x2,
22  [__DynamicallyInvokable]
23  Lcid = 0x4,
25  [__DynamicallyInvokable]
26  Retval = 0x8,
28  [__DynamicallyInvokable]
29  Optional = 0x10,
31  ReservedMask = 0xF000,
33  [__DynamicallyInvokable]
34  HasDefault = 0x1000,
36  [__DynamicallyInvokable]
37  HasFieldMarshal = 0x2000,
39  Reserved3 = 0x4000,
41  Reserved4 = 0x8000
42  }
43 }
Specifies that the field has a default value.
Specifies that the field has marshaling information.
Definition: __Canon.cs:3
Specifies that the parameter is a return value.
Specifies that the parameter is optional.
Specifies that the parameter is a locale identifier (lcid).
ParameterAttributes
Defines the attributes that can be associated with a parameter. These are defined in CorHdr....
Specifies a reserved flag for common language runtime use only.
Specifies that the class can be serialized.