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