DataServiceActionQuery<T> Class
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.
Object of an action which returns a collection.
public sealed class DataServiceActionQuery<T>
type DataServiceActionQuery<'T> = class
Public NotInheritable Class DataServiceActionQuery(Of T)
Type Parameters
- T
Type of object to materialize.
- Inheritance
-
DataServiceActionQuery<T>
Constructors
| DataServiceActionQuery<T>(DataServiceContext, String, BodyOperationParameter[]) |
Object of an action which returns a collection. |
Properties
| RequestUri |
The URI for this action. |
Methods
| BeginExecute(AsyncCallback, Object) |
Asynchronously sends a request to the data service to execute a specific URI. |
| EndExecute(IAsyncResult) |
Called to complete the BeginExecute(AsyncCallback, Object). |
| Execute() |
Executes the action and returns the results as a collection. |
| ExecuteAsync() |
Asynchronously sends the request so that this call does not block processing while waiting for the results from the service. |
| GetEnumerator() |
Executes the query and returns the results as a collection. |