ConnectionStringSettingsCollection.Add(ConnectionStringSettings) Метод
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Добавляет объект ConnectionStringSettings в коллекцию.
public:
void Add(System::Configuration::ConnectionStringSettings ^ settings);
public void Add (System.Configuration.ConnectionStringSettings settings);
member this.Add : System.Configuration.ConnectionStringSettings -> unit
Public Sub Add (settings As ConnectionStringSettings)
Параметры
- settings
- ConnectionStringSettings
Объект ConnectionStringSettings для добавления в коллекцию.
Примеры
В следующем примере показано, как добавить ConnectionStringSettings объект в коллекцию ConnectionStringSettingsCollection .
// Add a connection string to the connection
// strings section and store it in the
// configuration file.
static void AddConnectionStrings()
{
// Get the count of the connection strings.
int connStrCnt =
ConfigurationManager.ConnectionStrings.Count;
// Define the string name.
string csName = "ConnStr" +
connStrCnt.ToString();
// Get the configuration file.
System.Configuration.Configuration config =
ConfigurationManager.OpenExeConfiguration(
ConfigurationUserLevel.None);
// Add the connection string.
ConnectionStringsSection csSection =
config.ConnectionStrings;
csSection.ConnectionStrings.Add(
new ConnectionStringSettings(csName,
"LocalSqlServer: data source=127.0.0.1;Integrated Security=SSPI;" +
"Initial Catalog=aspnetdb", "System.Data.SqlClient"));
// Save the configuration file.
config.Save(ConfigurationSaveMode.Modified);
Console.WriteLine("Connection string added.");
}
' Add a connection string to the connection
' strings section and store it in the
' configuration file.
Shared Sub AddConnectionStrings()
' Get the count of the connection strings.
Dim connStrCnt As Integer = _
ConfigurationManager.ConnectionStrings.Count
' Define the string name.
Dim csName As String = _
"ConnStr" + connStrCnt.ToString()
' Get the configuration file.
Dim config _
As System.Configuration.Configuration = _
ConfigurationManager.OpenExeConfiguration( _
ConfigurationUserLevel.None)
' Add the connection string.
Dim csSection _
As ConnectionStringsSection = _
config.ConnectionStrings
csSection.ConnectionStrings.Add( _
New ConnectionStringSettings(csName, _
"LocalSqlServer: data source=127.0.0.1;Integrated Security=SSPI;" _
+ "Initial Catalog=aspnetdb", "System.Data.SqlClient"))
' Save the configuration file.
config.Save(ConfigurationSaveMode.Modified)
Console.WriteLine("Connection string added.")
End Sub
Применяется к
См. также раздел
Совместная работа с нами на GitHub
Источник этого содержимого можно найти на GitHub, где также можно создавать и просматривать проблемы и запросы на вытягивание. Дополнительные сведения см. в нашем руководстве для участников.