Create

AsyncTask.Create method (1 of 2)

Creates the asynchronous task without any result.

public static IAsyncTask Create(AsyncTaskAction taskAction)
ParameterTypeDescription
taskActionAsyncTaskActionThe task action.

Return Value

The asynchronous task

See Also


AsyncTask.Create method (2 of 2)

Creates the asynchronous task with generic type result.

public static IAsyncTask Create(AsyncTaskFunc taskFunc)
ParameterTypeDescription
taskFuncAsyncTaskFuncThe task function.

Return Value

The asynchronous task

See Also