ConstantAwaiterCreateT Method |
Creates a new
IAwaiterT
always representing
value.
Namespace: AccessFlowAssembly: AccessFlow (in AccessFlow.dll) Version: 1.0.0.2 (1.0.0.2)
Syntaxpublic static IAwaiter<T> Create<T>(
T value
)
Public Shared Function Create(Of T) (
value As T
) As IAwaiter(Of T)
public:
generic<typename T>
static IAwaiter<T>^ Create(
T value
)
static member Create :
value : 'T -> IAwaiter<'T>
Parameters
- value
- Type: T
The awaited value.
Type Parameters
- T
-
The type of the awaited value.
Return Value
Type:
IAwaiterT
The new
IAwaiterT
always representing
value.
See Also