1 write to m_localChangeNotifications
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Threading\ExecutionContext.cs (1)
41m_localChangeNotifications = localChangeNotifications;
5 references to m_localChangeNotifications
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\Threading\ExecutionContext.cs (5)
95return new ExecutionContext(m_localValues, m_localChangeNotifications, isFlowSuppressed); 131internal bool HasChangeNotifications => m_localChangeNotifications != null; 360IAsyncLocal[]? previousChangeNotifications = previousExecutionCtx?.m_localChangeNotifications; 361IAsyncLocal[]? nextChangeNotifications = nextExecutionCtx?.m_localChangeNotifications; 498newChangeNotifications = current.m_localChangeNotifications;