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