5 implementations of Credentials
System.Net.Http (2)
System\Net\Http\SocketsHttpHandler\HttpEnvironmentProxy.cs (1)
303public ICredentials? Credentials
System\Net\Http\SocketsHttpHandler\HttpNoProxy.cs (1)
8public ICredentials? Credentials { get; set; }
System.Net.Requests (1)
System\Net\GlobalProxySelection.cs (1)
31public ICredentials? Credentials
System.Net.WebProxy (1)
System\Net\WebProxy.cs (1)
93public ICredentials? Credentials { get; set; }
System.Net.WebSockets.Client (1)
System\Net\WebSockets\WebSocketHandle.Managed.cs (1)
537public ICredentials? Credentials { get => throw new NotSupportedException(); set => throw new NotSupportedException(); }
3 references to Credentials
System.Net.Http (2)
System\Net\Http\SocketsHttpHandler\HttpConnectionPoolManager.cs (1)
134_proxyCredentials = _proxy.Credentials ?? settings._defaultProxyCredentials;
System\Net\Http\SocketsHttpHandler\HttpConnectionSettings.cs (1)
133_defaultCredentialsUsedForProxy = _proxy != null && (_proxy.Credentials == CredentialCache.DefaultCredentials || _defaultProxyCredentials == CredentialCache.DefaultCredentials),
System.Net.Requests (1)
System\Net\HttpWebRequest.cs (1)
1730handler.DefaultProxyCredentials = parameters.Proxy.Credentials;