mscorlib(4.0.0.0) API with additions
BindingFlags.cs
2 
3 namespace System.Reflection
4 {
7  [Flags]
8  [ComVisible(true)]
9  [__DynamicallyInvokable]
10  public enum BindingFlags
11  {
13  Default = 0x0,
15  [__DynamicallyInvokable]
16  IgnoreCase = 0x1,
18  [__DynamicallyInvokable]
19  DeclaredOnly = 0x2,
21  [__DynamicallyInvokable]
22  Instance = 0x4,
24  [__DynamicallyInvokable]
25  Static = 0x8,
27  [__DynamicallyInvokable]
28  Public = 0x10,
30  [__DynamicallyInvokable]
31  NonPublic = 0x20,
33  [__DynamicallyInvokable]
34  FlattenHierarchy = 0x40,
36  InvokeMethod = 0x100,
38  CreateInstance = 0x200,
40  GetField = 0x400,
42  SetField = 0x800,
44  GetProperty = 0x1000,
46  SetProperty = 0x2000,
48  PutDispProperty = 0x4000,
50  PutRefDispProperty = 0x8000,
52  [__DynamicallyInvokable]
53  ExactBinding = 0x10000,
55  SuppressChangeType = 0x20000,
57  [__DynamicallyInvokable]
58  OptionalParamBinding = 0x40000,
60  IgnoreReturn = 0x1000000
61  }
62 }
Specifies that the value of the specified field should be set.This flag is passed to an InvokeMember ...
Used in COM interop to specify that the return value of the member can be ignored.
BindingFlags
Specifies flags that control binding and the way in which the search for members and types is conduct...
Definition: BindingFlags.cs:10
Definition: __Canon.cs:3
Specifies that the PROPPUTREF member on a COM object should be invoked. PROPPUTREF specifies a proper...
Specifies that reflection should create an instance of the specified type. Calls the constructor that...
Specifies that the value of the specified field should be returned.This flag is passed to an InvokeMe...
Specifies that a method is to be invoked. This must not be a constructor or a type initializer....
Specifies that non-public members are to be included in the search.
Specifies that types of the supplied arguments must exactly match the types of the corresponding form...
Specifies that the PROPPUT member on a COM object should be invoked. PROPPUT specifies a property-set...
Specifies that public and protected static members up the hierarchy should be returned....
Specifies that only members declared at the level of the supplied type's hierarchy should be consider...
Specifies that the value of the specified property should be set. For COM properties,...
Specifies that the class can be serialized.
Specifies that instance members are to be included in the search.
Specifies that the value of the specified property should be returned.This flag is passed to an Invok...
The default setting for this enumeration, which is currently F:System.GCCollectionMode....
Returns the set of members whose parameter count matches the number of supplied arguments....