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