ConnectionStringSettingsCollection.Add(ConnectionStringSettings) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Adds a ConnectionStringSettings object to the collection.
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)
Parameters
- settings
- ConnectionStringSettings
A ConnectionStringSettings object to add to the collection.
Examples
The following example shows how to add a ConnectionStringSettings object to a ConnectionStringSettingsCollection collection.
// 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=True;" +
"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
Applies to
See also
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET