6 writes to m_task
System.Private.CoreLib (6)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\CompilerServices\PoolingAsyncValueTaskMethodBuilderT.cs (6)
55m_task = s_syncSuccessSentinel; 66SetException(exception, ref m_task); 96StateMachineBox? box = m_task ??= CreateWeaklyTypedStateMachineBox(); 109AwaitOnCompleted(ref awaiter, ref stateMachine, ref m_task); 144AwaitUnsafeOnCompleted(ref awaiter, ref stateMachine, ref m_task); 243internal 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> 52if (m_task is null) 59m_task.SetResult(result); 83if (m_task == s_syncSuccessSentinel)