3 writes to Proxy
System.Net.Http.WinHttpHandler (3)
System\Net\Http\WinHttpHandler.cs (2)
640state.Proxy = _proxy; 799state.Proxy = null;
System\Net\Http\WinHttpRequestState.cs (1)
85Proxy = null;
11 references to Proxy
System.Net.Http.WinHttpHandler (11)
System\Net\Http\WinHttpAuthHelper.cs (6)
127ICredentials? proxyCreds = state.Proxy == null ? 129state.Proxy.Credentials; 159state.Proxy?.GetProxy(state.RequestMessage.RequestUri), 191if (state.Proxy != null) 193proxyCredentials = state.Proxy.Credentials; 194proxyUri = state.Proxy.GetProxy(state.RequestMessage.RequestUri);
System\Net\Http\WinHttpHandler.cs (5)
788Debug.Assert(state.Proxy != null); 793state.Proxy.GetProxy(state.RequestMessage.RequestUri); 1291if (state.Proxy != null) 1295Uri? proxyUri = state.Proxy.IsBypassed(uri) ? null : state.Proxy.GetProxy(uri);