| ParallelStartBackground Method (Action) |
Starts a task in a secondary worker thread. Intended for long running, blocking work such as
I/O.
Namespace: DigitalRune.ThreadingAssembly: DigitalRune (in DigitalRune.dll) Version: 1.20.0.0 (1.20.1.14552)
Syntax public static Task StartBackground(
Action action
)
Public Shared Function StartBackground (
action As Action
) As Task
public:
static Task StartBackground(
Action^ action
)
static member StartBackground :
action : Action -> Task
Parameters
- action
- Type: SystemAction
The work to execute.
Return Value
Type:
TaskA task which represents the asynchronous operation.
Exceptions See Also