Click or drag to resize

IAsyncInitializerT Interface

Interface for asynchronous initializers.

Namespace:  Ditto.AsyncInit.Services
Assembly:  Ditto.AsyncInit.Services (in Ditto.AsyncInit.Services.dll) Version: 1.5.0.2468
Syntax
public interface IAsyncInitializer<T>

Type Parameters

T
The type of object to initialize (must implement any of the IAsyncInit/ICancelableAsyncInit interfaces).
Methods
  NameDescription
Public methodAsTask
Gets a task capturing the initialization.
Public methodAsTask(CancellationToken)
Gets a cancelable task capturing the initialization.
Top
See Also