LazyAsyncTValue Property

Gets the lazily initialized value of the current LazyAsyncT.

If the value have not been initialized, blocks the calling thread until the value get initialized.

If during initialization an exception have been thrown, it will wrapped into AggregateException and rethrowned on accessing this property.

Definition

Namespace: DevCase.Runtime.Threading
Assembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public T Value { get; }

Property Value

T
Tthe lazily initialized value of the current LazyAsyncT.

See Also