6 references to Password
NuGet.Configuration (6)
PackageSource\PackageSourceProvider.cs (1)
331credentialsItem.Password,
Settings\Items\CredentialsItem.cs (5)
62if (!string.Equals(Password, password, StringComparison.Ordinal)) 98public override bool IsEmpty() => string.IsNullOrEmpty(Username) && string.IsNullOrEmpty(Password); 200var newSetting = new CredentialsItem(ElementName, Username, Password, IsPasswordClearText, ValidAuthenticationTypes); 275if (!string.Equals(Password, credentials?.Password, StringComparison.Ordinal) ||