SqlConnectionStringBuilder.AsynchronousProcessing Proprietà

Definizione

Attenzione

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

Obsoleta. Ottiene o imposta un valore booleano che indica se l'elaborazione asincrona è consentita dalla connessione creata mediante questa stringa di connessione.

public:
 property bool AsynchronousProcessing { bool get(); void set(bool value); };
public bool AsynchronousProcessing { get; set; }
[System.Obsolete("AsynchronousProcessing has been deprecated. SqlConnection will ignore the 'Asynchronous Processing' keyword and always allow asynchronous processing.")]
public bool AsynchronousProcessing { get; set; }
member this.AsynchronousProcessing : bool with get, set
[<System.Obsolete("AsynchronousProcessing has been deprecated. SqlConnection will ignore the 'Asynchronous Processing' keyword and always allow asynchronous processing.")>]
member this.AsynchronousProcessing : bool with get, set
Public Property AsynchronousProcessing As Boolean

Valore della proprietà

Valore della proprietà AsynchronousProcessing o false se non è stato fornito alcun valore.

Attributi

Commenti

Questa proprietà corrisponde alle chiavi "Asynchronous Processing" e "async" all'interno della stringa di connessione. Per trarre vantaggio dall'elaborazione asincrona fornita dall'oggetto SqlCommand, questa coppia chiave/valore deve essere inclusa nella stringa di connessione dell'oggetto SqlConnection associato.

Si applica a

Vedi anche