Search notes:

System.Reflection.BindingFlags (enum)

foreach ($bindingFlag in [System.Enum]::GetValues('System.Reflection.BindingFlags')) {
   '{0,7} {1, -30}' -f $bindingFlag.value__, $bindingFlag.ToString()
}
0 Default
1 IgnoreCase
2 DeclaredOnly
4 Instance
8 Static
16 Public
32 NonPublic
64 FlattenHierarchy
256 InvokeMethod
512 CreateInstance
1024 GetField
2048 SetField
4096 GetProperty
8192 SetProperty
16384 PutDispProperty
32768 PutRefDispProperty
65536 ExactBinding
131072 SuppressChangeType
262144 OptionalParamBinding
16777216 IgnoreReturn

See also

The InvokeMember method of the System.Type class.

Index