1 write to m_exceptionsHolder
System.Private.CoreLib (1)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Threading\Tasks\Task.cs (1)
1924
if (Interlocked.CompareExchange(ref props.
m_exceptionsHolder
, holder, null) != null)
16 references to m_exceptionsHolder
System.Private.CoreLib (16)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Threading\Tasks\Task.cs (16)
1263
(m_contingentProperties.
m_exceptionsHolder
!= null) &&
1264
(m_contingentProperties.
m_exceptionsHolder
.ContainsFaultList),
1267
m_contingentProperties.
m_exceptionsHolder
.MarkAsHandled(false);
1662
return (props != null) && (props.
m_exceptionsHolder
!= null) && (props.
m_exceptionsHolder
.ContainsFaultList);
1863
(m_contingentProperties.
m_exceptionsHolder
!= null) &&
1864
(m_contingentProperties.
m_exceptionsHolder
.ContainsFaultList),
1868
m_contingentProperties.
m_exceptionsHolder
.MarkAsHandled(false);
1921
if (props.
m_exceptionsHolder
== null)
1933
props.
m_exceptionsHolder
.Add(exceptionObject, representsCancellation);
1998
Debug.Assert(m_contingentProperties != null && m_contingentProperties.
m_exceptionsHolder
!= null, "ExceptionRecorded should imply this");
2002
return m_contingentProperties.
m_exceptionsHolder
.CreateExceptionObject(false, canceledException);
2017
return m_contingentProperties!.
m_exceptionsHolder
!.GetExceptionDispatchInfos();
2025
return Volatile.Read(ref m_contingentProperties)?.
m_exceptionsHolder
?.GetCancellationExceptionDispatchInfo(); // may be null
2031
Volatile.Read(ref m_contingentProperties)?.
m_exceptionsHolder
?.MarkAsHandled(calledFromFinalizer: false);
2372
TaskExceptionHolder? exceptionHolder = Volatile.Read(ref task.m_contingentProperties)!.
m_exceptionsHolder
;