19 references to Url
System.Runtime.Remoting (4)
channels\core\corechannel.cs (1)
880Uri requestUrl = httpContext.Request.Url;
channels\http\httpremotinghandler.cs (2)
161int port = context.Request.Url.Port; 310return (context.Request.Url.IsLoopback || (localAddress != null && remoteAddress != null && localAddress == remoteAddress));
metadata\sdlchannelsink.cs (1)
376int port = context.Request.Url.Port;
System.ServiceModel.Activation (1)
System\ServiceModel\Activation\HostedHttpRequestAsyncResult.cs (1)
1007return this.context.Request.Url;
System.Web (9)
Abstractions\HttpRequestWrapper.cs (1)
281return _httpRequest.Url;
HttpRequest.cs (1)
1975_referrer = new Uri(this.Url, r);
HttpResponse.cs (1)
3308return (new Uri(Request.Url, url)).AbsoluteUri ;
Security\FormsAuthentication.cs (2)
541if (!UrlPath.IsPathOnSameServer(returnUrl, context.Request.Url)) 917if (!absUri.IsLoopback && !string.Equals(context.Request.Url.Host, absUri.Host, StringComparison.OrdinalIgnoreCase))
Security\PassportAuthenticationModule.cs (2)
183String strUrl = context.Request.Url.ToString(); 211String strUrl = context.Request.Url.ToString();
UI\ClientScriptManager.cs (1)
292(String.Equals(_owner.RequestInternal.Url.Scheme, "https", StringComparison.OrdinalIgnoreCase))) ?
UI\WebControls\MenuRendererClassic.cs (1)
186(String.Equals(Menu.Page.Request.Url.Scheme, "https", StringComparison.OrdinalIgnoreCase))) {
System.Web.DataVisualization (1)
WebForm\General\ChartHttpHandler.cs (1)
2007Url = HttpContext.Current.Request.Url.ToString();
System.Web.Mobile (4)
UI\MobileControls\Adapters\HtmlPageAdapter.cs (1)
153return Page.Request.Url.ToString();
UI\MobileControls\Adapters\WmlPageAdapter.cs (2)
225wmlWriter.BeginFile(Page.Request.Url.ToString(), _contentType, Page.Response.Charset); 344writer.BeginFile(Page.Request.Url.ToString(), _contentType, Page.Response.Charset);
UI\MobileControls\Adapters\XhtmlAdapters\XhtmlBasicPageAdapter.cs (1)
376writer.BeginFile (Page.Request.Url.ToString (), Page.Device.PreferredRenderingMime, Page.Response.Charset);