1 write to _theRuntime
System.Web (1)
HttpRuntime.cs (1)
104_theRuntime = new HttpRuntime();
91 references to _theRuntime
System.Web (91)
HttpRuntime.cs (91)
106_theRuntime.Init(); 560return _theRuntime._initializationError; 565_theRuntime._initializationError = value; 568_theRuntime.StartAppDomainShutdownTimer(); 575return _theRuntime._hostingInitFailed; 580_theRuntime.HostingInit(hostingFlags, policyLevel, appDomainCreationException); 585return _theRuntime._enableHeaderChecking; 591return _theRuntime._processRequestInApplicationTrust; 597return _theRuntime._disableProcessRequestInApplicationTrust; 603return _theRuntime._isLegacyCas; 609return _theRuntime._appOfflineMessage; 744_theRuntime._fcm.StartListeningToLocalResourcesDirectory(virtualDir); 1243string appOfflineFile = Path.Combine(_theRuntime._appDomainAppPath, AppOfflineFileName); 1247_theRuntime._fcm.StartMonitoringFile(appOfflineFile, new FileChangeEventHandler(_theRuntime.OnAppOfflineFileChange)); 1263_theRuntime._appOfflineMessage = message; 1270_theRuntime._appOfflineMessage = new byte[0]; 1318if (!_theRuntime._configInited) { 1319_theRuntime._configInited = true; 1375Interlocked.Increment(ref _theRuntime._activeRequestCount); 1381Interlocked.Decrement(ref _theRuntime._activeRequestCount); 1432return _theRuntime.ProcessRequestNotificationPrivate(wr, context); 1579_theRuntime._firstRequestCompleted = true; 2181if (DateTime.UtcNow > _theRuntime.LastShutdownAttemptTime.AddSeconds(waitChangeNotification)) 2196AppDomainShutdown(_theRuntime, e); 2201_theRuntime._userForcedShutdown = true; 2228if (_theRuntime.LastShutdownAttemptTime == DateTime.MinValue && !_theRuntime._firstRequestCompleted && !_theRuntime._userForcedShutdown) { 2239if (DateTime.UtcNow < _theRuntime._firstRequestStartTime.AddSeconds(delayTimeoutSec)) { 2251_theRuntime.RaiseShutdownWebEventOnce(); 2258_theRuntime.LastShutdownAttemptTime = DateTime.UtcNow; 2272if (!_theRuntime.InitiateShutdownOnce()) 2276+ ", ShutdownMessage=" + _theRuntime._shutDownMessage); 2284_theRuntime._shutDownStack = Environment.StackTrace; 2291_theRuntime._shutDownStack = stackTrace; 2295OnAppDomainShutdown(new BuildManagerHostUnloadEventArgs(_theRuntime._shutdownReason)); 2298ThreadPool.QueueUserWorkItem(_theRuntime._appDomainUnloadallback); 2304if (_theRuntime._shutdownInProgress) 2309_theRuntime._shutdownInProgress = true; 2319_theRuntime.Dispose(); 2333if (_theRuntime._shutdownReason == ApplicationShutdownReason.None) { 2334_theRuntime._shutdownReason = reason; 2342if (_theRuntime._shutDownMessage == null) 2343_theRuntime._shutDownMessage = message; 2345_theRuntime._shutDownMessage += "\r\n" + message; 2352get { return _theRuntime._shutdownReason; } 2381RequestQueue rq = _theRuntime._requestQueue; 2410_theRuntime.ProcessRequestInternal(wr); 2414_theRuntime.RejectRequestInternal(wr, silent); 2424if (_theRuntime.InitiateShutdownOnce()) { 2432_theRuntime.Dispose(); 2442_theRuntime._userForcedShutdown = true; 2463return _theRuntime._profiler; 2479return _theRuntime._namedPermissionSet; 2485return _theRuntime._policyLevel; 2491return _theRuntime._hostSecurityPolicyResolverType; 2497NamedPermissionSet namedPermissionSet = _theRuntime._namedPermissionSet; 2511return (_theRuntime._namedPermissionSet == null); 2783get { return _theRuntime._fcm; } 2787get { return _theRuntime._timeoutManager; } 2801Cache cachePublic = _theRuntime._cachePublic; 2803lock (_theRuntime) { 2804cachePublic = _theRuntime._cachePublic; 2808_theRuntime._cachePublic = cachePublic; 2842if (_theRuntime._clientScriptVirtualPath == null) { 2846_theRuntime._clientScriptVirtualPath = clientScriptVirtualPath; 2849return _theRuntime._clientScriptVirtualPath; 2870if (_theRuntime._clientScriptPhysicalPath == null) { 2873_theRuntime._clientScriptPhysicalPath = clientScriptPhysicalPath; 2876return _theRuntime._clientScriptPhysicalPath; 2935get { return _theRuntime._codegenDir; } 2939get { return _theRuntime._tempDir; } 2948return _theRuntime._appDomainAppId; 2969get { return _theRuntime._appDomainAppPath; } 2978return VirtualPath.GetVirtualPathStringNoTrailingSlash(_theRuntime._appDomainAppVPath); 2986return VirtualPath.GetVirtualPathString(_theRuntime._appDomainAppVPath); 2992return _theRuntime._appDomainAppVPath; 3015get { return _theRuntime._appDomainId; } 3032get { return Path.Combine(_theRuntime._appDomainAppPath, BinDirectoryName) + Path.DirectorySeparatorChar; } 3037get { return _theRuntime._appDomainAppVPath.SimpleCombineWithDir(CodeDirectoryName); } 3041get { return _theRuntime._appDomainAppVPath.SimpleCombineWithDir(ResourcesDirectoryName); } 3045get { return _theRuntime._appDomainAppVPath.SimpleCombineWithDir(WebRefDirectoryName); } 3060get { return _theRuntime._isOnUNCShare; } 3097get { return _theRuntime._debuggingEnabled; } 3101get { return _theRuntime._configInited; } 3105get { return _theRuntime._fusionInited; } 3109get { return _theRuntime._apartmentThreading; } 3113get { return _theRuntime._shutdownInProgress; } 3117get { return _theRuntime._trustLevel; } 3121get { return _theRuntime._wpUserId; }