SqlConnectionStringBuilder.AsynchronousProcessing Property

Definition

Caution

AsynchronousProcessing has been deprecated. SqlConnection will ignore the 'Asynchronous Processing' keyword and always allow asynchronous processing.

Obsolete. Gets or sets a Boolean value that indicates whether asynchronous processing is allowed by the connection created by using this connection string.

C#
public bool AsynchronousProcessing { get; set; }
C#
[System.Obsolete("AsynchronousProcessing has been deprecated. SqlConnection will ignore the 'Asynchronous Processing' keyword and always allow asynchronous processing.")]
public bool AsynchronousProcessing { get; set; }

Property Value

The value of the AsynchronousProcessing property, or false if no value has been supplied.

Attributes

Remarks

This property corresponds to the "Asynchronous Processing" and "async" keys within the connection string. In order to take advantage of the asynchronous processing provided by the SqlCommand object, this key/value pair must be included within the connection string of the associated SqlConnection object.

Applies to

Product Versions (Obsolete)
SqlClient .NET Framework 1.0, 1.1, 2.0, 2.1 (3.0, 3.1)

See also