1 write to PasswordText
NuGet.Configuration (1)
PackageSource\PackageSourceCredential.cs (1)
101
PasswordText
= passwordText;
9 references to PasswordText
NuGet.Configuration (9)
PackageSource\PackageSourceCredential.cs (9)
56
if (
PasswordText
!= null && !IsPasswordClearText)
60
return EncryptionUtility.DecryptString(
PasswordText
);
70
return
PasswordText
!;
84
public bool IsValid() => !string.IsNullOrEmpty(Username) && !string.IsNullOrEmpty(
PasswordText
);
113
combiner.AddObject(
PasswordText
);
183
return new PackageSourceCredential(Source, Username,
PasswordText
, IsPasswordClearText, ValidAuthenticationTypesText);
207
return new CredentialsItem(Source, Username,
PasswordText
, IsPasswordClearText, ValidAuthenticationTypesText);
224
string.Equals(
PasswordText
, other.
PasswordText
, StringComparison.Ordinal) &&