1 write to m_task
System.Private.CoreLib (1)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\CompilerServices\TaskAwaiter.cs (1)
424
m_task
= task;
6 references to m_task
System.Private.CoreLib (6)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\CompilerServices\AsyncHelpers.cs (1)
262
Suspend(awaiter.
m_task
, awaiter.m_options);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\CompilerServices\AsyncTaskMethodBuilderT.cs (1)
123
TaskAwaiter.UnsafeOnCompletedInternal(ta.
m_task
, box, (ta.m_options & ConfigureAwaitOptions.ContinueOnCapturedContext) != 0);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\CompilerServices\TaskAwaiter.cs (4)
431
public bool IsCompleted => ((m_options & ConfigureAwaitOptions.ForceYielding) == 0) &&
m_task
.IsCompleted;
440
TaskAwaiter.OnCompletedInternal(
m_task
, continuation, (m_options & ConfigureAwaitOptions.ContinueOnCapturedContext) != 0, flowExecutionContext: true);
450
TaskAwaiter.OnCompletedInternal(
m_task
, continuation, (m_options & ConfigureAwaitOptions.ContinueOnCapturedContext) != 0, flowExecutionContext: false);
460
TaskAwaiter.ValidateEnd(
m_task
, m_options);