1 write to _Context
System.Web (1)
Security\CookielessHelper.cs (1)
31_Context = context;
21 references to _Context
System.Web (21)
Security\CookielessHelper.cs (21)
48_Headers = _Context.Request.Headers[COOKIELESS_SESSION_FILTER_HEADER]; 60_Context.Response.SetAppPathModifier("(" + _Headers + ")"); 71string path = _Context.Request.ClientFilePath.VirtualPathString; 96_Context.Request.ClientFilePath = VirtualPath.CreateAbsolute(path); 98string rawUrl = _Context.Request.RawUrl; 104_Context.Request.RawUrl = path; 107_Context.Request.ValidateCookielessHeaderIfRequiredByConfig(_Headers); // ensure that the path doesn't contain invalid chars 108_Context.Response.SetAppPathModifier("(" + _Headers + ")"); 112string filePath = _Context.Request.FilePath; 113string newFilePath = _Context.Response.RemoveAppPathModifier(filePath); 115_Context.RewritePath(VirtualPath.CreateAbsolute(newFilePath), 116_Context.Request.PathInfoObject, 172_Context.Response.SetAppPathModifier("(" + _Headers + ")"); 174_Context.Response.SetAppPathModifier(null); 292redirectPath = _Context.Request.RawUrl; 305_Context.Response.Cookies.Add(new HttpCookie(s_AutoDetectName, s_AutoDetectValue)); 309_Context.Response.Redirect(redirectPath, true); 326if (!_Context.Request.Browser.Cookies || !_Context.Request.Browser.SupportsRedirectWithCookie) { 339string cookieHeader = _Context.Request.Headers["Cookie"]; 346string qs = _Context.Request.QueryString[s_AutoDetectName];