TaskFactory Constructor (TaskScheduler)
Microsoft Silverlight will reach end of support after October 2021. Learn more.
Initializes a TaskFactory instance with the specified configuration.
Namespace: System.Threading.Tasks
Assembly: mscorlib (in mscorlib.dll)
Syntax
'Declaration
Public Sub New ( _
scheduler As TaskScheduler _
)
public TaskFactory(
TaskScheduler scheduler
)
Parameters
- scheduler
Type: System.Threading.Tasks.TaskScheduler
The TaskScheduler to use to schedule any tasks created with this TaskFactory. A null value indicates that the current TaskScheduler should be used.
Remarks
With this constructor, the TaskCreationOptions property is initialized to None, the TaskContinuationOptions property is initialized to None, and the TaskScheduler property is initialized to scheduler, unless it's null, in which case the property is initialized to the current scheduler (see Current).
Version Information
Silverlight
Supported in: 5
Platforms
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.
See Also