SqlConnectionStringBuilder::ApplicationName Property
.NET Framework (current version)
Gets or sets the name of the application associated with the connection string.
Assembly: System.Data (in System.Data.dll)
Property Value
Type: System::String^The name of the application, or ".NET SqlClient Data Provider" if no name has been supplied.
| Exception | Condition |
|---|---|
| ArgumentNullException | To set the value to null, use Value. |
This property corresponds to the "Application Name" and "app" keys within the connection string.
The following example creates a new SqlConnectionStringBuilder and assigns a connection string in the object's constructor. The code displays the parsed and recreated version of the connection string, and then modifies the ApplicationName property of the object. Finally, the code displays the new connection string, including the new key/value pair.
The sample displays the following text in the console window:
Original: Data Source=(local);Initial Catalog=AdventureWorks;Integrated Security=True ApplicationName=".Net SqlClient Data Provider" Modified: Data Source=(local);Initial Catalog=AdventureWorks;Integrated Security=True;Application Name="My Application"
.NET Framework
Available since 2.0
Available since 2.0
Show: