17.153. Interface IAsyncInitialization<T>
Namespace: ArmoniK.Core.Common
Assembly: ArmoniK.Core.Common.dll
Marks a type as requiring asynchronous initialization and provides the result of that initialization.
public interface IAsyncInitialization<T>
17.153.1. Type Parameters
T
17.153.2. Properties
17.153.2.1. Initialization
The result of the asynchronous initialization of this instance.
Task<T> Initialization { get; }
17.153.2.1.1. Property Value
Task<T>