Task
Last updated
Was this helpful?
Last updated
Was this helpful?
Represents an asynchronous operation.
The class represents a single operation that does not return a value and that usually executes asynchronously. objects are one of the central components of the first introduced in the .NET Framework 4. Because the work performed by a object typically executes asynchronously on a thread pool thread rather than synchronously on the main application thread, you can use the property, as well as the , , and properties, to determine the state of a task. Most commonly, a lambda expression is used to specify the work that the task is to perform.
Represents an asynchronous operation.
Let's first take a look at how the task class
works with a couple of examples:
The following example creates and executes four tasks. Three tasks execute an delegate named action
, which accepts an argument of type . A fourth task executes a lambda expression (an delegate) that is defined inline in the call to the task creation method. Each task is instantiated and run in a different way:
Task t1
is instantiated by calling a Task class constructor, but is started by calling its method only after task t2
has started.
Task t2
is instantiated and started in a single method call by calling the method.
Task t3
is instantiated and started in a single method call by calling the method.
Task t4
is executed synchronously on the main thread by calling the method.
Because task t4
executes synchronously, it executes on the main application thread. The remaining tasks execute asynchronously typically on one or more thread pool threads.