DataServiceQuery<TElement>.EndExecute(IAsyncResult) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Ends an asynchronous query request to a data service.
public:
System::Collections::Generic::IEnumerable<TElement> ^ EndExecute(IAsyncResult ^ asyncResult);
public System.Collections.Generic.IEnumerable<TElement> EndExecute (IAsyncResult asyncResult);
override this.EndExecute : IAsyncResult -> seq<'Element>
Public Function EndExecute (asyncResult As IAsyncResult) As IEnumerable(Of TElement)
Parameters
- asyncResult
- IAsyncResult
The pending asynchronous query request.
Returns
IEnumerable<TElement>
Returns an IEnumerable<T> that contains the results of the query operation.
Exceptions
When the data service returns an HTTP 404: Resource Not Found error.
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.