2 writes to _credentials
System.Net.Http (2)
System\Net\Http\SocketsHttpHandler\HttpConnectionSettings.cs (1)
105_credentials = _credentials,
System\Net\Http\SocketsHttpHandler\SocketsHttpHandler.cs (1)
124_settings._credentials = value;
9 references to _credentials
System.Net.Http (9)
System\Net\Http\SocketsHttpHandler\ConnectionPool\HttpConnectionPool.cs (4)
363if (doRequestAuth && Settings._credentials != null) 365return AuthenticationHelper.SendWithRequestAuthAsync(request, async, Settings._credentials, Settings._preAuthenticate, this, cancellationToken); 383if (doRequestAuth && Settings._credentials != null) 385return AuthenticationHelper.SendWithNtConnectionAuthAsync(request, async, Settings._credentials, Settings._impersonationLevel, connection, this, cancellationToken);
System\Net\Http\SocketsHttpHandler\HttpConnectionSettings.cs (2)
105_credentials = _credentials, 135_defaultCredentialsUsedForServer = _credentials == CredentialCache.DefaultCredentials,
System\Net\Http\SocketsHttpHandler\SocketsHttpHandler.cs (3)
120get => _settings._credentials; 560HttpMessageHandlerStage handler = new HttpConnectionHandler(poolManager, doRequestAuth: settings._credentials is { }); 581handler = new RedirectHandler(settings._maxAutomaticRedirections, handler, disableAuthOnRedirect: settings._credentials is not CredentialCache);