1 write to m_exceptionsHolder
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Threading\Tasks\Task.cs (1)
1771
if (Interlocked.CompareExchange(ref props.
m_exceptionsHolder
, holder, null) != null)
16 references to m_exceptionsHolder
System.Private.CoreLib (16)
src\libraries\System.Private.CoreLib\src\System\Threading\Tasks\Task.cs (16)
1115
(m_contingentProperties.
m_exceptionsHolder
!= null) &&
1116
(m_contingentProperties.
m_exceptionsHolder
.ContainsFaultList),
1119
m_contingentProperties.
m_exceptionsHolder
.MarkAsHandled(false);
1510
return (props != null) && (props.
m_exceptionsHolder
!= null) && (props.
m_exceptionsHolder
.ContainsFaultList);
1710
(m_contingentProperties.
m_exceptionsHolder
!= null) &&
1711
(m_contingentProperties.
m_exceptionsHolder
.ContainsFaultList),
1715
m_contingentProperties.
m_exceptionsHolder
.MarkAsHandled(false);
1768
if (props.
m_exceptionsHolder
== null)
1780
props.
m_exceptionsHolder
.Add(exceptionObject, representsCancellation);
1845
Debug.Assert(m_contingentProperties != null && m_contingentProperties.
m_exceptionsHolder
!= null, "ExceptionRecorded should imply this");
1849
return m_contingentProperties.
m_exceptionsHolder
.CreateExceptionObject(false, canceledException);
1864
return m_contingentProperties!.
m_exceptionsHolder
!.GetExceptionDispatchInfos();
1872
return Volatile.Read(ref m_contingentProperties)?.
m_exceptionsHolder
?.GetCancellationExceptionDispatchInfo(); // may be null
1878
Volatile.Read(ref m_contingentProperties)?.
m_exceptionsHolder
?.MarkAsHandled(calledFromFinalizer: false);
2219
TaskExceptionHolder? exceptionHolder = Volatile.Read(ref task.m_contingentProperties)!.
m_exceptionsHolder
;