14 references to AddOrUpdateAttribute
NuGet.Configuration (14)
Settings\Items\AddItem.cs (1)
21set => AddOrUpdateAttribute(ConfigurationConstants.ValueAttribute, value ?? string.Empty);
Settings\Items\FileClientCertItem.cs (3)
181AddOrUpdateAttribute(ConfigurationConstants.PathAttribute, filePath); 188AddOrUpdateAttribute(ConfigurationConstants.ClearTextPasswordAttribute, password); 194AddOrUpdateAttribute(ConfigurationConstants.PasswordAttribute, encryptedPassword);
Settings\Items\SourceItem.cs (3)
21set => AddOrUpdateAttribute(ConfigurationConstants.ProtocolVersionAttribute, value); 35set => AddOrUpdateAttribute(ConfigurationConstants.AllowInsecureConnections, value); 49set => AddOrUpdateAttribute(ConfigurationConstants.DisableTLSCertificateValidation, value);
Settings\Items\StoreClientCertItem.cs (4)
270AddOrUpdateAttribute(ConfigurationConstants.StoreLocationAttribute, storeLocation.Value.ToString()); 275AddOrUpdateAttribute(ConfigurationConstants.StoreNameAttribute, storeName.Value.ToString()); 280AddOrUpdateAttribute(ConfigurationConstants.FindByAttribute, GetString(findBy.Value)); 285AddOrUpdateAttribute(ConfigurationConstants.FindValueAttribute, findValue);
Settings\Items\UnknownItem.cs (1)
222AddOrUpdateAttribute(attribute.Key, attribute.Value);
Settings\SettingItem.cs (2)
89AddOrUpdateAttribute(attribute.Key, value); 101AddOrUpdateAttribute(attribute.Key, attribute.Value);