1 instantiation of SessionIDManager
System.Web (1)
State\SessionStateModule.cs (1)
317iManager = new SessionIDManager();
24 references to SessionIDManager
System.Web (24)
Configuration\SessionStateSection.cs (4)
142SessionIDManager.COOKIEMODE_DEFAULT.ToString(), 148SessionIDManager.SESSION_COOKIE_DEFAULT, 212private HttpCookieMode cookielessCache = SessionIDManager.COOKIEMODE_DEFAULT; 338[ConfigurationProperty("cookieName", DefaultValue = SessionIDManager.SESSION_COOKIE_DEFAULT)]
State\InProcStateClientManager.cs (6)
119SessionIDManager.CheckIdLength(id, true /* throwOnFail */); 225SessionIDManager.CheckIdLength(id, true /* throwOnFail */); 262SessionIDManager.CheckIdLength(id, true /* throwOnFail */); 368SessionIDManager.CheckIdLength(id, true /* throwOnFail */); 412SessionIDManager.CheckIdLength(id, true /* throwOnFail */); 444SessionIDManager.CheckIdLength(id, true /* throwOnFail */);
State\OutOfProcStateClientManager.cs (1)
274SessionIDManager.CheckIdLength(id, true /* throwOnFail */);
State\SessionIDManager.cs (1)
133_isInherited = !(this.GetType() == typeof(SessionIDManager));
State\SessionStateModule.cs (3)
641!((SessionIDManager)_idManager).UseCookieless(_rqContext)) ) { // Case 2 932Debug.Assert(!((SessionIDManager)_idManager).UseCookieless(_rqContext), "We can delay session id only if we are not using cookieless"); 1505return ((SessionIDManager)_idManager).UseCookieless(_rqContext);
State\sqlstateclientmanager.cs (9)
85static int ID_LENGTH = SessionIDManager.SessionIDMaxLength + APP_SUFFIX_LENGTH; 419Debug.Assert(id.Length <= SessionIDManager.SESSION_ID_LENGTH_LIMIT, "id.Length <= SessionIDManager.SESSION_ID_LENGTH_LIMIT"); 577SessionIDManager.CheckIdLength(id, true /* throwOnFail */); 589SessionIDManager.CheckIdLength(id, true /* throwOnFail */); 606SessionIDManager.CheckIdLength(id, true /* throwOnFail */); 640SessionIDManager.CheckIdLength(id, true /* throwOnFail */); 719SessionIDManager.CheckIdLength(id, true /* throwOnFail */); 740SessionIDManager.CheckIdLength(id, true /* throwOnFail */); 768SessionIDManager.CheckIdLength(id, true /* throwOnFail */);