24 references to SessionStateModule
System.Web (24)
Configuration\SessionStateSection.cs (8)
80
SessionStateModule
.MODE_DEFAULT,
86
SessionStateModule
.STATE_CONNECTION_STRING_DEFAULT,
108
SessionStateModule
.SQL_CONNECTION_STRING_DEFAULT,
154
TimeSpan.FromMinutes((long)
SessionStateModule
.TIMEOUT_DEFAULT),
249
[ConfigurationProperty("mode", DefaultValue =
SessionStateModule
.MODE_DEFAULT)]
259
[ConfigurationProperty("stateConnectionString", DefaultValue =
SessionStateModule
.STATE_CONNECTION_STRING_DEFAULT)]
280
[ConfigurationProperty("sqlConnectionString", DefaultValue =
SessionStateModule
.SQL_CONNECTION_STRING_DEFAULT)]
510
if (elem.Timeout.TotalMinutes >
SessionStateModule
.MAX_CACHE_BASED_TIMEOUT_MINUTES &&
HttpContext.cs (2)
118
volatile
SessionStateModule
_sessionStateModule;
1052
internal void AddHttpSessionStateModule(
SessionStateModule
module, bool delayed) {
State\InProcStateClientManager.cs (2)
260
Debug.Assert(item.Timeout <=
SessionStateModule
.MAX_CACHE_BASED_TIMEOUT_MINUTES, "item.Timeout <= SessionStateModule.MAX_CACHE_BASED_TIMEOUT_MINUTES");
366
Debug.Assert(timeout <=
SessionStateModule
.MAX_CACHE_BASED_TIMEOUT_MINUTES, "item.Timeout <= SessionStateModule.MAX_CACHE_BASED_TIMEOUT_MINUTES");
State\OutOfProcStateClientManager.cs (3)
96
SessionStateModule
.ReadConnectionString(config, ref stateConnectionString, "stateConnectionString");
272
Debug.Assert(timeout <=
SessionStateModule
.MAX_CACHE_BASED_TIMEOUT_MINUTES, "item.Timeout <= SessionStateModule.MAX_CACHE_BASED_TIMEOUT_MINUTES");
623
Debug.Assert(timeout <=
SessionStateModule
.MAX_CACHE_BASED_TIMEOUT_MINUTES, "item.Timeout <= SessionStateModule.MAX_CACHE_BASED_TIMEOUT_MINUTES");
State\SessionStateContainer.cs (3)
36
SessionStateModule
_stateModule; // used for optimized InProc session id callback
54
SessionStateModule
stateModule,
100
if (value >
SessionStateModule
.MAX_CACHE_BASED_TIMEOUT_MINUTES &&
State\SessionStateModule.cs (2)
89
SessionStateModule
.s_configCookieless,
90
SessionStateModule
.s_configMode,
State\SessionStateUtil.cs (1)
50
static internal void AddHttpSessionStateModuleToContext(HttpContext context,
SessionStateModule
module, bool delayed) {
State\sqlstateclientmanager.cs (1)
142
SessionStateModule
.ReadConnectionString(config, ref sqlConnectionString, "sqlConnectionString");
State\StateRuntime.cs (2)
544
timeoutMinutes =
SessionStateModule
.TIMEOUT_DEFAULT;
547
if (timeoutMinutes >
SessionStateModule
.MAX_CACHE_BASED_TIMEOUT_MINUTES) {