public static interface DotNetNativeTypes.IBindingFlags
Modifier and Type | Field and Description |
---|---|
static int |
BindingFlags_CreateInstance
Specifies that reflection should create an instance of the specified type.
|
static int |
BindingFlags_DeclaredOnly
Specifies that only members declared at the level of the supplied type's hierarchy should be considered.
|
static int |
BindingFlags_Default
Specifies that no binding flags are defined
|
static int |
BindingFlags_ExactBinding
Specifies that types of the supplied arguments must exactly match the types of the corresponding formal parameters.
|
static int |
BindingFlags_FlattenHierarchy
Specifies that public and protected static members up the hierarchy should be returned.
|
static int |
BindingFlags_GetField
Specifies that the value of the specified field should be returned.
|
static int |
BindingFlags_GetProperty
Specifies that the value of the specified property should be returned.
|
static int |
BindingFlags_IgnoreCase
Specifies that the case of the member name should not be considered when binding
|
static int |
BindingFlags_IgnoreReturn
Used in COM interop to specify that the return value of the member can be ignored
|
static int |
BindingFlags_Instance
Specifies that instance members are to be included in the search
|
static int |
BindingFlags_InvokeMethod
Specifies that a method is to be invoked.
|
static int |
BindingFlags_NonPublic
Specifies that non-public members are to be included in the search
|
static int |
BindingFlags_OptionalParamBinding
Returns the set of members whose parameter count matches the number of supplied arguments
|
static int |
BindingFlags_Public
Specifies that public members are to be included in the search
|
static int |
BindingFlags_PutDispProperty
Specifies that the PROPPUT member on a COM object should be invoked.
|
static int |
BindingFlags_PutRefDispProperty
Specifies that the PROPPUTREF member on a COM object should be invoked.
|
static int |
BindingFlags_SetField
Specifies that the value of the specified field should be set.
|
static int |
BindingFlags_SetProperty
Specifies that the value of the specified property should be set.
|
static int |
BindingFlags_Static
Specifies that static members are to be included in the search
|
static int |
BindingFlags_SuppressChangeType
Not implemented
|
static final int BindingFlags_Default
static final int BindingFlags_IgnoreCase
static final int BindingFlags_DeclaredOnly
static final int BindingFlags_Instance
static final int BindingFlags_Static
static final int BindingFlags_Public
static final int BindingFlags_NonPublic
static final int BindingFlags_FlattenHierarchy
static final int BindingFlags_InvokeMethod
This flag is passed to an Type_InvokeMember method to invoke a method
static final int BindingFlags_CreateInstance
This flag is passed to a Type_InvokeMember method to invoke a constructor
static final int BindingFlags_GetField
This flag is passed to an Type_InvokeMember method to get a field value
static final int BindingFlags_SetField
This flag is passed to an Type_InvokeMember method to set a field value
static final int BindingFlags_GetProperty
This flag is passed to an Type_InvokeMember method to invoke a property getter
static final int BindingFlags_SetProperty
This flag is passed to an Type_InvokeMember method to invoke a property setter
static final int BindingFlags_PutDispProperty
static final int BindingFlags_PutRefDispProperty
static final int BindingFlags_ExactBinding
static final int BindingFlags_SuppressChangeType
static final int BindingFlags_OptionalParamBinding
static final int BindingFlags_IgnoreReturn