SqlConnectionStringBuilder.AsynchronousProcessing プロパティ

定義

注意事項

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

互換性のために残されています。 この接続文字列を使用して作成される接続で非同期処理が許可されるかどうかを示すブール値を取得または設定します。

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

プロパティ値

AsynchronousProcessing プロパティの値。値が指定されていない場合は false

属性

注釈

このプロパティは、接続文字列内の "Asynchronous Processing" キーおよび "async" キーに対応しています。 SqlCommand オブジェクトによって提供される非同期処理を利用するには、関連する SqlConnection オブジェクトの接続文字列内にこのキー/値ペアが含まれている必要があります。

適用対象

こちらもご覧ください