8 writes to Value
mscorlib (4)
system\diagnostics\eventing\activitytracker.cs (2)
124m_current.Value = newActivity; 210m_current.Value = newCurrentActivity;
system\threading\thread.cs (2)
1208s_asyncLocalCurrentUICulture.Value = value; 1318s_asyncLocalCurrentCulture.Value = value;
System.ServiceModel (4)
System\ServiceModel\OperationContext.cs (3)
105OperationContext.currentAsyncLocalContext.Value = value; 370currentAsyncLocalContext.Value = oc; 379currentAsyncLocalContext.Value = null;
System\ServiceModel\OperationContextScope.cs (1)
49currentScope.Value = value;
9 references to Value
mscorlib (5)
system\diagnostics\eventing\activitytracker.cs (5)
78var currentActivity = m_current.Value; 107currentActivity = m_current.Value; 153etwLog.DebugFacilityMessage("OnStopEnterActivityState", ActivityInfo.LiveActivities(m_current.Value)); 158ActivityInfo currentActivity = m_current.Value; 246private Guid CurrentActivityId { get { return m_current.Value.ActivityId; } }
System.ServiceModel (4)
System\ServiceModel\OperationContext.cs (3)
98return ShouldUseAsyncLocalContext ? OperationContext.currentAsyncLocalContext.Value : CurrentHolder.Context; 132return !ServiceModelAppSettings.DisableOperationContextAsyncFlow && CurrentHolder.Context == null && OperationContext.currentAsyncLocalContext.Value != null && OperationContext.currentAsyncLocalContext.Value.isAsyncFlowEnabled;
System\ServiceModel\OperationContextScope.cs (1)
38return ServiceModelAppSettings.DisableOperationContextAsyncFlow ? legacyCurrentScope : currentScope.Value;