3 writes to Value
NuGet.Configuration (3)
Settings\Items\CredentialsItem.cs (3)
36_username.Value = value; 64_password.Value = password; 90_validAuthenticationTypes.Value = value!;
12 references to Value
NuGet.CommandLine.XPlat (2)
Commands\ConfigCommands\ConfigRunners.cs (2)
192return item.Value + "\tfile: " + item.ConfigPath; 194return item.Value;
NuGet.Configuration (10)
Settings\Items\AddItem.cs (3)
73return Settings.ResolvePathFromOrigin(Origin.DirectoryPath, Origin.ConfigFilePath, Value); 76return Value; 129var newItem = new AddItem(Key, Value, AdditionalAttributes);
Settings\Items\CredentialsItem.cs (3)
28get => _username.Value; 42public string Password => _password.Value; 70get => _validAuthenticationTypes?.Value;
Settings\Items\SourceItem.cs (1)
91var newSetting = new SourceItem(Key, Value, ProtocolVersion, AllowInsecureConnections, DisableTLSCertificateValidation);
Utility\SettingsUtility.cs (3)
42return item.Value; 144var encryptedString = encryptedItem?.Value; 415var source = configSetting?.Value;