6 writes to m_task
System.Private.CoreLib (6)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\CompilerServices\PoolingAsyncValueTaskMethodBuilderT.cs (6)
55
m_task
= s_syncSuccessSentinel;
66
SetException(exception, ref
m_task
);
96
StateMachineBox? box =
m_task
??= CreateWeaklyTypedStateMachineBox();
109
AwaitOnCompleted(ref awaiter, ref stateMachine, ref
m_task
);
144
AwaitUnsafeOnCompleted(ref awaiter, ref stateMachine, ref
m_task
);
243
internal object ObjectIdForDebugger =>
m_task
??= CreateWeaklyTypedStateMachineBox();
4 references to m_task
System.Private.CoreLib (4)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\CompilerServices\PoolingAsyncValueTaskMethodBuilderT.cs (4)
29
/// <summary>The result for this builder if it's completed synchronously, in which case <see cref="
m_task
"/> will be <see cref="s_syncSuccessSentinel"/>.</summary>
52
if (
m_task
is null)
59
m_task
.SetResult(result);
83
if (
m_task
== s_syncSuccessSentinel)