SqlConnectionStringBuilder.AsynchronousProcessing 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
주의
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 개체의 연결 문자열 내에 포함되어야 합니다.