The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
.NET Framework 4.5
Specifies flags that control optional behavior for the creation and execution of tasks.
This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.
Namespace: System.Threading.Tasks
Assembly: mscorlib (in mscorlib.dll)
| Member name | Description | |
|---|---|---|
![]() ![]() | None | Specifies that the default behavior should be used. |
![]() ![]() | PreferFairness | A hint to a TaskScheduler to schedule a task in as fair a manner as possible, meaning that tasks scheduled sooner will be more likely to be run sooner, and tasks scheduled later will be more likely to be run later. |
![]() ![]() | LongRunning | Specifies that a task will be a long-running, coarse-grained operation involving fewer, larger components than fine-grained systems. It provides a hint to the TaskScheduler that oversubscription may be warranted. Oversubscription lets you create more threads than the available number of hardware threads. |
![]() ![]() | AttachedToParent | Specifies that a task is attached to a parent in the task hierarchy. For more information, see Nested Tasks and Child Tasks. |
![]() | DenyChildAttach | Specifies that an InvalidOperationException will be thrown if an attempt is made to attach a child task to the created task. |
![]() | HideScheduler | Prevents the ambient scheduler from being seen as the current scheduler in the created task. This means that operations like StartNew or ContinueWith that are performed in the created task will see Default as the current scheduler. |
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

