1 write to m_current
mscorlib (1)
system\diagnostics\eventing\activitytracker.cs (1)
231
m_current
= new AsyncLocal<ActivityInfo>(ActivityChanging);
11 references to m_current
mscorlib (11)
system\diagnostics\eventing\activitytracker.cs (11)
56
if (
m_current
== null) // We are not enabled
70
if(
m_current
== null)
78
var currentActivity =
m_current
.Value;
107
currentActivity =
m_current
.Value;
124
m_current
.Value = newActivity;
144
if (
m_current
== null) // We are not enabled
153
etwLog.DebugFacilityMessage("OnStopEnterActivityState", ActivityInfo.LiveActivities(
m_current
.Value));
158
ActivityInfo currentActivity =
m_current
.Value;
210
m_current
.Value = newCurrentActivity;
229
if (
m_current
== null)
246
private Guid CurrentActivityId { get { return
m_current
.Value.ActivityId; } }