Delegate AsyncTaskFunc

AsyncTaskFunc delegate

The long operation delegate for the asynchronous task with generic type result.

public delegate object AsyncTaskFunc(IAsyncTaskState taskState);
ParameterTypeDescription
taskStateIAsyncTaskStateState of the asynchronous task.

Return Value

Result of the long operation.

See Also