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

◆ TaskContinuationOptions

Enumerator
None 
PreferFairness 
LongRunning 
AttachedToParent 
DenyChildAttach 
HideScheduler 
LazyCancellation 
RunContinuationsAsynchronously 
NotOnRanToCompletion 
NotOnFaulted 
NotOnCanceled 
OnlyOnRanToCompletion 
OnlyOnFaulted 
OnlyOnCanceled 
ExecuteSynchronously 

Definition at line 4 of file TaskContinuationOptions.cs.

5{
6 None = 0,
8 LongRunning = 2,
11 HideScheduler = 0x10,
12 LazyCancellation = 0x20,
14 NotOnRanToCompletion = 0x10000,
15 NotOnFaulted = 0x20000,
16 NotOnCanceled = 0x40000,
17 OnlyOnRanToCompletion = 0x60000,
18 OnlyOnFaulted = 0x50000,
19 OnlyOnCanceled = 0x30000,
20 ExecuteSynchronously = 0x80000
21}