23.148. 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>
23.148.1. Type Parameters
T
23.148.2. Properties
23.148.2.1. Initialization
The result of the asynchronous initialization of this instance.
Task<T> Initialization { get; }
23.148.2.1.1. Property Value
Task<T>