1 write to m_exceptionsHolder
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Threading\Tasks\Task.cs (1)
1849
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)
1192
(m_contingentProperties.
m_exceptionsHolder
!= null) &&
1193
(m_contingentProperties.
m_exceptionsHolder
.ContainsFaultList),
1196
m_contingentProperties.
m_exceptionsHolder
.MarkAsHandled(false);
1587
return (props != null) && (props.
m_exceptionsHolder
!= null) && (props.
m_exceptionsHolder
.ContainsFaultList);
1788
(m_contingentProperties.
m_exceptionsHolder
!= null) &&
1789
(m_contingentProperties.
m_exceptionsHolder
.ContainsFaultList),
1793
m_contingentProperties.
m_exceptionsHolder
.MarkAsHandled(false);
1846
if (props.
m_exceptionsHolder
== null)
1858
props.
m_exceptionsHolder
.Add(exceptionObject, representsCancellation);
1923
Debug.Assert(m_contingentProperties != null && m_contingentProperties.
m_exceptionsHolder
!= null, "ExceptionRecorded should imply this");
1927
return m_contingentProperties.
m_exceptionsHolder
.CreateExceptionObject(false, canceledException);
1942
return m_contingentProperties!.
m_exceptionsHolder
!.GetExceptionDispatchInfos();
1950
return Volatile.Read(ref m_contingentProperties)?.
m_exceptionsHolder
?.GetCancellationExceptionDispatchInfo(); // may be null
1956
Volatile.Read(ref m_contingentProperties)?.
m_exceptionsHolder
?.MarkAsHandled(calledFromFinalizer: false);
2297
TaskExceptionHolder? exceptionHolder = Volatile.Read(ref task.m_contingentProperties)!.
m_exceptionsHolder
;