System.Threading.Tasks.TaskCreationOptions
namespace System.Threading.Tasks
{
public enum TaskCreationOptions
{
AttachedToParent = 4,
DenyChildAttach = 8,
HideScheduler = 16,
LongRunning = 2,
None = 0,
PreferFairness = 1,
RunContinuationsAsynchronously = 64
}
}