5 instantiations of AsyncLocal
mscorlib (3)
system\diagnostics\eventing\activitytracker.cs (1)
231m_current = new AsyncLocal<ActivityInfo>(ActivityChanging);
system\threading\thread.cs (2)
1204Interlocked.CompareExchange(ref s_asyncLocalCurrentUICulture, new AsyncLocal<CultureInfo>(AsyncLocalSetCurrentUICulture), null); 1315Interlocked.CompareExchange(ref s_asyncLocalCurrentCulture, new AsyncLocal<CultureInfo>(AsyncLocalSetCurrentCulture), null);
System.ServiceModel (2)
System\ServiceModel\OperationContext.cs (1)
21static AsyncLocal<OperationContext> currentAsyncLocalContext = new AsyncLocal<OperationContext>();
System\ServiceModel\OperationContextScope.cs (1)
16static AsyncLocal<OperationContextScope> currentScope = new AsyncLocal<OperationContextScope>();
5 references to AsyncLocal
mscorlib (3)
system\diagnostics\eventing\activitytracker.cs (1)
598AsyncLocal<ActivityInfo> m_current;
system\threading\thread.cs (2)
196static AsyncLocal<CultureInfo> s_asyncLocalCurrentCulture; 197static AsyncLocal<CultureInfo> s_asyncLocalCurrentUICulture;
System.ServiceModel (2)
System\ServiceModel\OperationContext.cs (1)
21static AsyncLocal<OperationContext> currentAsyncLocalContext = new AsyncLocal<OperationContext>();
System\ServiceModel\OperationContextScope.cs (1)
16static AsyncLocal<OperationContextScope> currentScope = new AsyncLocal<OperationContextScope>();