TaskFactory(Of TResult) Constructor (CancellationToken, TaskCreationOptions, TaskContinuationOptions, TaskScheduler)
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Initializes a TaskFactory(Of TResult) instance with the specified configuration.
Assembly: mscorlib (in mscorlib.dll)
'Declaration Public Sub New ( _ cancellationToken As CancellationToken, _ creationOptions As TaskCreationOptions, _ continuationOptions As TaskContinuationOptions, _ scheduler As TaskScheduler _ )
Parameters
- cancellationToken
- Type: System.Threading.CancellationToken
The default cancellation token that will be assigned to tasks created by this TaskFactory unless another cancellation token is explicitly specified when calling the factory methods.
- creationOptions
- Type: System.Threading.Tasks.TaskCreationOptions
The default options to use when creating tasks with this TaskFactory(Of TResult).
- continuationOptions
- Type: System.Threading.Tasks.TaskContinuationOptions
The default options to use when creating continuation tasks with this TaskFactory(Of TResult).
- scheduler
- Type: System.Threading.Tasks.TaskScheduler
The default scheduler to use to schedule any tasks created with this TaskFactory(Of TResult). A null value indicates that Current should be used.
| Exception | Condition |
|---|---|
| ArgumentOutOfRangeException | creationOptions or continuationOptions specifies an invalid value. |
With this constructor, the TaskCreationOptions property is initialized to creationOptions, the TaskContinuationOptions property is initialized to continuationOptions, and the TaskScheduler property is initialized to scheduler, unless it's Nothing, in which case the property is initialized to the current scheduler (see Current).