3 writes to _Uri
System (3)
net\System\Net\HttpWebRequest.cs (3)
5166
_Uri
= _OriginUri;
5783
_Uri
= newUri;
5799
_Uri
= oldUri;
23 references to _Uri
System (23)
net\System\Net\HttpWebRequest.cs (23)
877
(((object)
_Uri
.Scheme != (object)Uri.UriSchemeHttps && !IsWebSocketRequest) || (IsTunnelRequest));
2399
return
_Uri
;
2450
return GetHostAndPortString(
_Uri
.Host,
_Uri
.Port, !
_Uri
.IsDefaultPort);
3303
_ServicePoint = ServicePointManager.FindServicePoint(
_Uri
, _Proxy, out _ProxyChain, ref _AbortDelegate, ref m_Aborted);
4710
return GetSafeHostAndPort(
_Uri
, addDefaultPort, forcePunycode);
4738
StringBuilder sb = new StringBuilder(
_Uri
.Scheme);
4741
sb.Append(
_Uri
.PathAndQuery);
4778
if ((object)
_Uri
.Scheme == (object)Uri.UriSchemeFtp) {
4784
string scheme =
_Uri
.GetComponents(UriComponents.Scheme | UriComponents.KeepDelimiter, UriFormat.UriEscaped);
4786
string path =
_Uri
.GetComponents(UriComponents.Path | UriComponents.Query, UriFormat.UriEscaped);
4809
string scheme =
_Uri
.GetComponents(UriComponents.Scheme | UriComponents.KeepDelimiter, UriFormat.UriEscaped);
4810
string userInfo =
_Uri
.GetComponents(UriComponents.UserInfo | UriComponents.KeepDelimiter, UriFormat.UriEscaped);
4812
string path =
_Uri
.GetComponents(UriComponents.Path | UriComponents.Query, UriFormat.UriEscaped);
4818
NetworkCredential networkCreds = Credentials.GetCredential(
_Uri
, "basic");
4891
string pathAndQuery =
_Uri
.PathAndQuery;
4912
return
_Uri
;
5415
if ((
_Uri
.Scheme == Uri.UriSchemeHttps) || IsTunnelRequest) {
5747
newUri = new Uri(
_Uri
, location);
5782
Uri oldUri =
_Uri
;
5784
_RedirectedToDifferentHost = Uri.Compare(_OriginUri,
_Uri
, UriComponents.HostAndPort,
5791
Debug.Assert(hostUriSuccess, "Can't rebuild HostUri from redirected URI: {0}",
_Uri
.ToString());