public class AsyncLazy<T> : Lazy<Task<T>>
Public Class AsyncLazy(Of T)
Inherits Lazy(Of Task(Of T))
generic<typename T>
public ref class AsyncLazy : public Lazy<Task<T>^>
type AsyncLazy<'T> =
class
inherit Lazy<Task<'T>>
end
AsyncLazy<T>(Func<T>) | Инициализирует новый экземпляр класса AsyncLazy<T> |
AsyncLazy<T>(Func<Task<T>>) | Инициализирует новый экземпляр класса AsyncLazy<T> |
IsValueCreated | Gets a value that indicates whether a value has been created for this Lazy<T> instance. (Унаследован от Lazy<Task<T>>) |
Value | Gets the lazily initialized value of the current Lazy<T> instance. (Унаследован от Lazy<Task<T>>) |
Equals | Determines whether the specified object is equal to the current object. (Унаследован от Object) |
Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Унаследован от Object) |
GetAwaiter | |
GetHashCode | Serves as the default hash function. (Унаследован от Object) |
GetType | Gets the Type of the current instance. (Унаследован от Object) |
MemberwiseClone | Creates a shallow copy of the current Object. (Унаследован от Object) |
ToString | Creates and returns a string representation of the Value property for this instance. (Унаследован от Lazy<Task<T>>) |