10 instantiations of CredentialResponse
NuGet.Credentials (10)
DefaultNetworkCredentialsCredentialProvider.cs (2)
55return Task.FromResult(new CredentialResponse(CredentialStatus.ProviderNotApplicable)); 59new CredentialResponse(CredentialCache.DefaultNetworkCredentials));
PluginCredentialProvider.cs (3)
107taskResponse = new CredentialResponse(CredentialStatus.ProviderNotApplicable); 144taskResponse = new CredentialResponse(result); 148taskResponse = new CredentialResponse(CredentialStatus.ProviderNotApplicable);
SecurePluginCredentialProvider.cs (5)
104taskResponse = new CredentialResponse(CredentialStatus.ProviderNotApplicable); 188return taskResponse ?? new CredentialResponse(CredentialStatus.ProviderNotApplicable); 263taskResponse = new CredentialResponse(result); 267taskResponse = new CredentialResponse(CredentialStatus.UserCanceled); 271taskResponse = new CredentialResponse(CredentialStatus.ProviderNotApplicable);
13 references to CredentialResponse
NuGet.Credentials (13)
CredentialService.cs (5)
24private readonly ConcurrentDictionary<string, CredentialResponse> _providerCredentialCache 25= new ConcurrentDictionary<string, CredentialResponse>(); 106if (!TryFromCredentialCache(uri, type, isRetry, provider, out CredentialResponse? response)) 199out CredentialResponse? credentials) 214CredentialResponse credentials)
DefaultNetworkCredentialsCredentialProvider.cs (1)
39public Task<CredentialResponse> GetAsync(
ICredentialProvider.cs (1)
33Task<CredentialResponse> GetAsync(
PluginCredentialProvider.cs (2)
90public Task<CredentialResponse> GetAsync( 104CredentialResponse taskResponse;
SecurePluginCredentialProvider.cs (4)
87public async Task<CredentialResponse> GetAsync( 101CredentialResponse? taskResponse = null; 254private static CredentialResponse GetAuthenticationCredentialsResponseToCredentialResponse(GetAuthenticationCredentialsResponse credentialResponse) 256CredentialResponse taskResponse;