1 type derived from HostExecutionContextManager
System.Web (1)
Hosting\AspNetHostExecutionContextManager.cs (1)
25internal sealed class AspNetHostExecutionContextManager : HostExecutionContextManager {
1 instantiation of HostExecutionContextManager
mscorlib (1)
system\threading\hostexecutioncontextmanager.cs (1)
332_hostExecutionContextManager = new HostExecutionContextManager();
21 references to HostExecutionContextManager
mscorlib (16)
system\appdomain.cs (1)
1010HostExecutionContextManager contextManager = domainManager.HostExecutionContextManager;
system\appdomainmanager.cs (2)
143public virtual HostExecutionContextManager HostExecutionContextManager { 146return HostExecutionContextManager.GetInternalHostExecutionContextManager();
system\threading\executioncontext.cs (2)
1074ecsw.hecsw = HostExecutionContextManager.SetHostExecutionContextInternal(hostContext); 1252HostExecutionContext hostCtxNew = HostExecutionContextManager.CaptureHostExecutionContext();
system\threading\hostexecutioncontextmanager.cs (11)
44HostExecutionContextManager hostMgr = HostExecutionContextManager.GetCurrentHostExecutionContextManager(); 115HostExecutionContextManager.ReleaseHostSecurityContext(this.handle); 126HostExecutionContextManager.CloneHostSecurityContext(this, unkSafeHandleCloned); 138private static HostExecutionContextManager _hostExecutionContextManager; 291HostExecutionContextManager hostMgr = HostExecutionContextManager.GetCurrentHostExecutionContextManager(); 302HostExecutionContextManager hostMgr = HostExecutionContextManager.GetCurrentHostExecutionContextManager(); 316internal static HostExecutionContextManager GetCurrentHostExecutionContextManager() 327internal static HostExecutionContextManager GetInternalHostExecutionContextManager()
System.Web (5)
Hosting\ApplicationManager.cs (5)
1594private readonly HostExecutionContextManager _hostExecutionContextManager = CreateHostExecutionContextManager(); 1597public override HostExecutionContextManager HostExecutionContextManager { 1609private static HostExecutionContextManager CreateHostExecutionContextManager() { 1611Debug.Assert(hostExecutionContextManager is HostExecutionContextManager || hostExecutionContextManager.GetType() == typeof(object), "THostExecutionContextManager was an unexpected type!"); 1612return hostExecutionContextManager as HostExecutionContextManager;