Base:
property
RequestUri
System.Net.WebRequest.RequestUri
22 references to RequestUri
PresentationCore (2)
Core\CSharp\MS\Internal\AppModel\CookieHandler.cs (2)
42
string cookies = GetCookie(httpRequest.
RequestUri
, false/*throwIfNoCookie*/);
54
httpRequest.CookieContainer.SetCookies(httpRequest.
RequestUri
, cookies.Replace(';', ','));
System (2)
net\System\Net\_DigestClient.cs (2)
316
remoteUri = httpWebRequest.
RequestUri
;
558
this.Uri = httpWebRequest.
RequestUri
.GetParts(UriComponents.HostAndPort, UriFormat.UriEscaped);
System.ServiceModel (18)
System\ServiceModel\Channels\HttpChannelHelpers.cs (17)
3285
SR.HttpRequestTimedOut, request.
RequestUri
, timeout)));
3525
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new EndpointNotFoundException(SR.GetString(SR.EndpointNotFound, request.
RequestUri
.AbsoluteUri), webException));
3530
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new ServerTooBusyException(SR.GetString(SR.HttpServerTooBusy, request.
RequestUri
.AbsoluteUri), webException));
3540
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new ProtocolException(SR.GetString(SR.MissingContentType, request.
RequestUri
), webException));
3543
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new ProtocolException(SR.GetString(SR.FramingContentTypeMismatch, request.ContentType, request.
RequestUri
), webException));
3580
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new EndpointNotFoundException(SR.GetString(SR.EndpointNotFound, request.
RequestUri
.AbsoluteUri), webException));
3595
return new EndpointNotFoundException(SR.GetString(SR.EndpointNotFound, request.
RequestUri
.AbsoluteUri), webException);
3597
return new SecurityNegotiationException(SR.GetString(SR.SecureChannelFailure, request.
RequestUri
.Authority), webException);
3599
return new SecurityNegotiationException(SR.GetString(SR.TrustFailure, request.
RequestUri
.Authority), webException);
3603
return new CommunicationException(SR.GetString(SR.HttpReceiveFailure, request.
RequestUri
), webException);
3605
return new CommunicationException(SR.GetString(SR.HttpSendFailure, request.
RequestUri
), webException);
3614
return new ServiceActivationException(SR.GetString(SR.Hosting_ServiceActivationFailed, request.
RequestUri
));
3656
return new CommunicationObjectAbortedException(SR.GetString(SR.HttpRequestAborted, request.
RequestUri
), webException);
3683
return SR.GetString(SR.HttpRequestTimedOut, request.
RequestUri
, TimeSpan.FromMilliseconds(request.Timeout));
3708
return SocketConnectionInitiator.ConvertConnectException((SocketException)webException.InnerException, request.
RequestUri
, TimeSpan.MaxValue, webException);
3711
return new EndpointNotFoundException(SR.GetString(SR.EndpointNotFound, request.
RequestUri
.AbsoluteUri), webException);
3838
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new ServiceActivationException(SR.GetString(SR.Hosting_ServiceActivationFailed, request.
RequestUri
)));
System\ServiceModel\Channels\TransportSecurityHelpers.cs (1)
136
Fx.Assert(request.
RequestUri
.Scheme == Uri.UriSchemeHttps,