Created
January 24, 2015 13:57
-
-
Save bawNg/bdfa290821a7991c6243 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
BindingFlags = { | |
Default = 0, | |
IgnoreCase = 1, | |
DeclaredOnly = 2, | |
Instance = 4, | |
Static = 8, | |
Public = 16, | |
NonPublic = 32, | |
FlattenHierarchy = 64, | |
InvokeMethod = 256, | |
CreateInstance = 512, | |
GetField = 1024, | |
SetField = 2048, | |
GetProperty = 4096, | |
SetProperty = 8192, | |
PutDispProperty = 16384, | |
PutRefDispProperty = 32768, | |
ExactBinding = 65536, | |
SuppressChangeType = 131072, | |
OptionalParamBinding = 262144, | |
IgnoreReturn = 16777216 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment