Click or drag to resize

AsyncActivatorCreateAsyncT, TArg1, TArg2 Method (TArg1, TArg2, 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, TArg1, TArg2>(
	TArg1 arg1,
	TArg2 arg2,
	CancellationToken cancellationToken
)
where T : Object, ICancelableAsyncInit<TArg1, TArg2>

Parameters

arg1
Type: TArg1
The first initialization argument.
arg2
Type: TArg2
The second initialization argument.
cancellationToken
Type: System.ThreadingCancellationToken
Cancellation token.

Type Parameters

T
The type of object to create (must implement ICancelableAsyncInitTArg1, TArg2).
TArg1
The type of the first initialization argument.
TArg2
The type of the second initialization argument.

Return Value

Type: TaskT
A Task capturing the initialization.
See Also