1 write to RawUrl
System.Web (1)
Security\CookielessHelper.cs (1)
104_Context.Request.RawUrl = path;
23 references to RawUrl
System.Runtime.Remoting (1)
channels\http\httpremotinghandler.cs (1)
263String rawUrl = context.Request.RawUrl;
System.ServiceModel.Activation (1)
System\ServiceModel\Activation\ServiceHttpModule.cs (1)
101application.Request.RawUrl.ToString(), application.Request.PhysicalApplicationPath);
System.Web (21)
Abstractions\HttpRequestWrapper.cs (1)
221return _httpRequest.RawUrl;
Handlers\TraceHandler.cs (1)
133string url = _request.RawUrl;
HttpRequest.cs (3)
1452string uri = RawUrl; 3038string temp = RawUrl; 3078string temp = RawUrl;
Security\AnonymousIdentificationModule.cs (2)
104context.Response.Redirect(context.Request.RawUrl, false); 274context.Response.Redirect(context.Request.RawUrl);
Security\CookielessHelper.cs (2)
98string rawUrl = _Context.Request.RawUrl; 292redirectPath = _Context.Request.RawUrl;
Security\FormsAuthentication.cs (1)
752returnUrl = HttpUtility.UrlEncode(context.Request.RawUrl, context.Request.ContentEncoding);
Security\FormsAuthenticationModule.cs (3)
156e.Context.Response.Redirect(e.Context.Request.RawUrl); 260String strUrl = context.Request.RawUrl; 450string strUrl = FormsAuthentication.RemoveQueryStringVariableFromUrl(context.Request.RawUrl, name);
Security\PassportIdentity.cs (1)
90context.Request.RawUrl + " " +
SiteMapProvider.cs (1)
137string rawUrl = context.Request.RawUrl;
State\StateRuntime.cs (1)
291return CacheInternal.PrefixStateApplication + HttpUtility.UrlDecode(request.RawUrl);
UI\Page.cs (2)
5269Response.Redirect(Request.RawUrl, false); 6370string unused = _request.RawUrl;
UI\TraceContext.cs (1)
769string url = _context.Request.RawUrl;
UI\WebControls\login.cs (1)
1197return Page.Request.RawUrl;
UI\WebControls\loginstatus.cs (1)
312Page.Response.Redirect(Page.Request.RawUrl, false);