SqlConnectionStringBuilder.ApplicationIntent Property

Definition

Declares the application workload type when connecting to a database in an SQL Server Availability Group. You can set the value of this property with ApplicationIntent. For more information about SqlClient support for Always On Availability Groups, see SqlClient Support for High Availability, Disaster Recovery.

C#
public Microsoft.Data.SqlClient.ApplicationIntent ApplicationIntent { get; set; }

Property Value

Returns the current value of the property.

Remarks

This property corresponds to the "Application Intent" and "ApplicationIntent" keys within the connection string.

The default value is ApplicationIntent.ReadWrite.

Applies to

Product Versions
SqlClient .NET Core 1.0, 1.1, 2.0, 2.1, 3.0, 3.1, 4.0, 4.1, 5.0, 5.1, 5.2
SqlClient .NET Framework 1.0, 1.1, 2.0, 2.1, 3.0, 3.1, 4.0, 4.1, 5.0, 5.1, 5.2
SqlClient .NET Standard 1.0, 1.1, 2.0, 2.1, 3.0, 3.1, 4.0, 4.1, 5.0, 5.1, 5.2

See also