1 write to ResponseCode
NuGet.Protocol (1)
Plugins\Messages\GetAuthenticationCredentialsResponse.cs (1)
72ResponseCode = responseCode;
5 references to ResponseCode
NuGet.Credentials (2)
SecurePluginCredentialProvider.cs (2)
133if (credentialResponse.ResponseCode == MessageResponseCode.NotFound && nonInteractive) 217else if (credentialResponse.ResponseCode == MessageResponseCode.NotFound)
NuGet.Protocol (3)
_generated\53\PluginJsonContext.GetAuthenticationCredentialsResponse.g.cs (2)
140Getter = static obj => ((global::NuGet.Protocol.Plugins.GetAuthenticationCredentialsResponse)obj).ResponseCode, 190global::System.Text.Json.JsonSerializer.Serialize(writer, ((global::NuGet.Protocol.Plugins.GetAuthenticationCredentialsResponse)value).ResponseCode, MessageResponseCode);
Plugins\Messages\GetAuthenticationCredentialsResponse.cs (1)
82public bool IsValid() => ResponseCode == MessageResponseCode.Success && (!string.IsNullOrWhiteSpace(Username) || !string.IsNullOrWhiteSpace(Password))