Freigeben über


SqlConnectionStringBuilder.AsynchronousProcessing Eigenschaft

Definition

Achtung

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

Veraltet. Ruft einen booleschen Wert ab, der angibt, ob die mit dieser Verbindungszeichenfolge erstellte Verbindung eine asynchrone Verarbeitung zulässt.

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

Eigenschaftswert

Der Wert der AsynchronousProcessing-Eigenschaft oder false, wenn kein Wert angegeben wurde.

Attribute

Hinweise

Diese Eigenschaft entspricht den Schlüsseln "Asynchrone Verarbeitung" und "async" in der Verbindungszeichenfolge. Um die asynchrone Verarbeitung zu nutzen, die vom SqlCommand-Objekt bereitgestellt wird, muss dieses Schlüssel-Wert-Paar in die Verbindungszeichenfolge des zugehörigen SqlConnection-Objekts eingeschlossen werden.

Gilt für:

Weitere Informationen