1 write to m_exceptionsHolder
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Threading\Tasks\Task.cs (1)
1772
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);
1711
(m_contingentProperties.
m_exceptionsHolder
!= null) &&
1712
(m_contingentProperties.
m_exceptionsHolder
.ContainsFaultList),
1716
m_contingentProperties.
m_exceptionsHolder
.MarkAsHandled(false);
1769
if (props.
m_exceptionsHolder
== null)
1781
props.
m_exceptionsHolder
.Add(exceptionObject, representsCancellation);
1846
Debug.Assert(m_contingentProperties != null && m_contingentProperties.
m_exceptionsHolder
!= null, "ExceptionRecorded should imply this");
1850
return m_contingentProperties.
m_exceptionsHolder
.CreateExceptionObject(false, canceledException);
1865
return m_contingentProperties!.
m_exceptionsHolder
!.GetExceptionDispatchInfos();
1873
return Volatile.Read(ref m_contingentProperties)?.
m_exceptionsHolder
?.GetCancellationExceptionDispatchInfo(); // may be null
1879
Volatile.Read(ref m_contingentProperties)?.
m_exceptionsHolder
?.MarkAsHandled(calledFromFinalizer: false);
2220
TaskExceptionHolder? exceptionHolder = Volatile.Read(ref task.m_contingentProperties)!.
m_exceptionsHolder
;