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 + ")");
71
string path =
_Context
.Request.ClientFilePath.VirtualPathString;
96
_Context
.Request.ClientFilePath = VirtualPath.CreateAbsolute(path);
98
string 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 + ")");
112
string filePath =
_Context
.Request.FilePath;
113
string 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);
292
redirectPath =
_Context
.Request.RawUrl;
305
_Context
.Response.Cookies.Add(new HttpCookie(s_AutoDetectName, s_AutoDetectValue));
309
_Context
.Response.Redirect(redirectPath, true);
326
if (!
_Context
.Request.Browser.Cookies || !
_Context
.Request.Browser.SupportsRedirectWithCookie) {
339
string cookieHeader =
_Context
.Request.Headers["Cookie"];
346
string qs =
_Context
.Request.QueryString[s_AutoDetectName];