2 writes to Password
NuGet.Credentials (2)
_generated\1\PluginCredentialResponseJsonContext.PluginCredentialResponse.g.cs (1)
81Setter = static (obj, value) => ((global::NuGet.Credentials.PluginCredentialResponse)obj).Password = value!,
PluginCredentialProvider.cs (1)
239credentialResponse.Password = null;
5 references to Password
NuGet.Credentials (5)
_generated\1\PluginCredentialResponseJsonContext.PluginCredentialResponse.g.cs (2)
80Getter = static obj => ((global::NuGet.Credentials.PluginCredentialResponse)obj).Password, 169writer.WriteString(PropName_Password, ((global::NuGet.Credentials.PluginCredentialResponse)value).Password);
PluginCredentialProvider.cs (1)
137new NetworkCredential(response.Username, response.Password),
PluginCredentialResponse.cs (1)
45public bool IsValid => (!String.IsNullOrWhiteSpace(Username) || !String.IsNullOrWhiteSpace(Password))
PluginException.cs (1)
102response.Password == null ? string.Empty : RedactedPassword,