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: 리소스를 찾을 수 없음 오류가 반환되는 경우 |