Click or drag to resize

AsyncActivatorCreateAsyncT Method (CancellationToken)

Asynchronously creates and initializes an instance of the specified type.

Namespace:  Ditto.AsyncInit
Assembly:  Ditto.AsyncInit (in Ditto.AsyncInit.dll) Version: 1.5.0.2281
Syntax
public static Task<T> CreateAsync<T>(
	CancellationToken cancellationToken
)
where T : ICancelableAsyncInit

Parameters

cancellationToken
Type: System.ThreadingCancellationToken
Cancellation token.

Type Parameters

T
The type of object to create (must implement ICancelableAsyncInit).

Return Value

Type: TaskT
A Task capturing the initialization.
See Also