Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ BindingFlags

Enumerator
Default 
IgnoreCase 
DeclaredOnly 
Instance 
Static 
Public 
NonPublic 
FlattenHierarchy 
InvokeMethod 
CreateInstance 
GetField 
SetField 
GetProperty 
SetProperty 
PutDispProperty 
PutRefDispProperty 
ExactBinding 
SuppressChangeType 
OptionalParamBinding 
IgnoreReturn 
DoNotWrapExceptions 

Definition at line 4 of file BindingFlags.cs.

5{
6 Default = 0,
7 IgnoreCase = 1,
8 DeclaredOnly = 2,
9 Instance = 4,
10 Static = 8,
11 Public = 0x10,
12 NonPublic = 0x20,
13 FlattenHierarchy = 0x40,
14 InvokeMethod = 0x100,
15 CreateInstance = 0x200,
16 GetField = 0x400,
17 SetField = 0x800,
18 GetProperty = 0x1000,
19 SetProperty = 0x2000,
20 PutDispProperty = 0x4000,
21 PutRefDispProperty = 0x8000,
22 ExactBinding = 0x10000,
23 SuppressChangeType = 0x20000,
24 OptionalParamBinding = 0x40000,
25 IgnoreReturn = 0x1000000,
26 DoNotWrapExceptions = 0x2000000
27}