1 write to m_task
System.Private.CoreLib (1)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\CompilerServices\TaskAwaiter.cs (1)
506
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)
344
return Suspend(awaiter.
m_task
, awaiter.m_options);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\CompilerServices\TaskAwaiter.cs (5)
513
public bool IsCompleted => ((m_options & ConfigureAwaitOptions.ForceYielding) == 0) &&
m_task
.IsCompleted;
522
TaskAwaiter.OnCompletedInternal(
m_task
, continuation, (m_options & ConfigureAwaitOptions.ContinueOnCapturedContext) != 0, flowExecutionContext: true);
532
TaskAwaiter.OnCompletedInternal(
m_task
, continuation, (m_options & ConfigureAwaitOptions.ContinueOnCapturedContext) != 0, flowExecutionContext: false);
543
TaskAwaiter.ValidateEnd(
m_task
); // no need to pass options as SuppressThrowing isn't supported
544
return
m_task
.ResultOnSuccess;