1 write to _value
System.Private.CoreLib (1)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\CompilerServices\ValueTaskAwaiter.cs (1)
33
internal ValueTaskAwaiter(in ValueTask value) =>
_value
= value;
8 references to _value
System.Private.CoreLib (8)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\CompilerServices\ValueTaskAwaiter.cs (8)
39
get =>
_value
.IsCompleted;
44
public void GetResult() =>
_value
.ThrowIfCompletedUnsuccessfully();
49
object? obj =
_value
._obj;
58
Unsafe.As<IValueTaskSource>(obj).OnCompleted(s_invokeActionDelegate, continuation,
_value
._token, ValueTaskSourceOnCompletedFlags.UseSchedulingContext | ValueTaskSourceOnCompletedFlags.FlowExecutionContext);
69
object? obj =
_value
._obj;
78
Unsafe.As<IValueTaskSource>(obj).OnCompleted(s_invokeActionDelegate, continuation,
_value
._token, ValueTaskSourceOnCompletedFlags.UseSchedulingContext);
88
object? obj =
_value
._obj;
105
Unsafe.As<IValueTaskSource>(obj).OnCompleted(ThreadPool.s_invokeAsyncStateMachineBox, box,
_value
._token, ValueTaskSourceOnCompletedFlags.UseSchedulingContext);