DataServiceContext.EndExecuteBatch メソッド
BeginExecuteBatch を完了するために呼び出されます。
名前空間: System.Data.Services.Client
アセンブリ: Microsoft.Data.Services.Client (Microsoft.Data.Services.Client.dll)
構文
'宣言
Public Function EndExecuteBatch ( _
asyncResult As IAsyncResult _
) As DataServiceResponse
'使用
Dim instance As DataServiceContext
Dim asyncResult As IAsyncResult
Dim returnValue As DataServiceResponse
returnValue = instance.EndExecuteBatch(asyncResult)
public DataServiceResponse EndExecuteBatch(
IAsyncResult asyncResult
)
public:
DataServiceResponse^ EndExecuteBatch(
IAsyncResult^ asyncResult
)
member EndExecuteBatch :
asyncResult:IAsyncResult -> DataServiceResponse
public function EndExecuteBatch(
asyncResult : IAsyncResult
) : DataServiceResponse
パラメーター
- asyncResult
型: System.IAsyncResult
非同期操作の状態を表す IAsyncResult。
戻り値
型: System.Data.Services.Client.DataServiceResponse
バッチ操作の結果を示す DataServiceResult オブジェクト。
説明
クエリのグループをデータ サービスにバッチとして送信します。 個々のクエリの応答は、DataServiceResponse インスタンスからアクセスできる、OperationResponse から派生した DataServiceResponse オブジェクトとして表されます。