Method RunAsBusyAsync
RunAsBusyAsync(Func<Task>)
Runs the specified task as a busy task.
Declaration
public Task RunAsBusyAsync(Func<Task> taskFunc)
Parameters
| Type |
Name |
Description |
| Func<Task> |
taskFunc |
|
Returns
Implements
RunAsBusyAsync<T>(Func<Task<T>>)
Runs the specified task as a busy task.
Declaration
public Task<T> RunAsBusyAsync<T>(Func<Task<T>> taskFunc)
Parameters
| Type |
Name |
Description |
| Func<Task<T>> |
taskFunc |
|
Returns
Type Parameters
Implements
RunAsBusyAsync<T>(Task<T>)
Runs the specified task as a busy task.
Declaration
public Task<T> RunAsBusyAsync<T>(Task<T> task)
Parameters
| Type |
Name |
Description |
| Task<T> |
task |
|
Returns
Type Parameters
Implements
RunAsBusyAsync(Task)
Runs the specified task as a busy task.
Declaration
public Task RunAsBusyAsync(Task task)
Parameters
| Type |
Name |
Description |
| Task |
task |
|
Returns
Implements