DataServiceQuery<TElement>.EndExecute メソッド
データ サービスに対する非同期クエリ要求を終了します。
名前空間: System.Data.Services.Client
アセンブリ: Microsoft.Data.Services.Client (Microsoft.Data.Services.Client.dll)
構文
'宣言
Public Function EndExecute ( _
asyncResult As IAsyncResult _
) As IEnumerable(Of TElement)
'使用
Dim instance As DataServiceQuery
Dim asyncResult As IAsyncResult
Dim returnValue As IEnumerable(Of TElement)
returnValue = instance.EndExecute(asyncResult)
public IEnumerable<TElement> EndExecute(
IAsyncResult asyncResult
)
public:
IEnumerable<TElement>^ EndExecute(
IAsyncResult^ asyncResult
)
member EndExecute :
asyncResult:IAsyncResult -> IEnumerable<'TElement>
public function EndExecute(
asyncResult : IAsyncResult
) : IEnumerable<TElement>
パラメーター
- asyncResult
型: System.IAsyncResult
保留中の非同期クエリ要求。
戻り値
型: System.Collections.Generic.IEnumerable<TElement>
クエリ操作の結果が格納されている IEnumerable<T> を返します。
例外
例外 | 条件 |
---|---|
DataServiceQueryException | データ サービスが HTTP 404 (リソースが見つからないエラー) を返す場合。 |