IDocumentClient.ReadStoredProcedureFeedAsync
Method
Definition
Overloads
| ReadStoredProcedureFeedAsync(Uri, FeedOptions) |
Reads the feed (sequence) of stored procedures for a collection as an asynchronous operation in the Azure DocumentDB database service. |
| ReadStoredProcedureFeedAsync(String, FeedOptions) |
Reads the feed (sequence) of StoredProcedure for a collection as an asynchronous operation in the Azure DocumentDB database service. |
ReadStoredProcedureFeedAsync(Uri, FeedOptions)
Reads the feed (sequence) of stored procedures for a collection as an asynchronous operation in the Azure DocumentDB database service.
public System.Threading.Tasks.Task<Microsoft.Azure.Documents.Client.FeedResponse<Microsoft.Azure.Documents.StoredProcedure>> ReadStoredProcedureFeedAsync (Uri documentCollectionUri, Microsoft.Azure.Documents.Client.FeedOptions options = null);
- documentCollectionUri
- Uri
The URI of the parent document collection.
- options
- FeedOptions
(Optional) The FeedOptions for the request.
The task object representing the service response for the asynchronous operation.
ReadStoredProcedureFeedAsync(String, FeedOptions)
Reads the feed (sequence) of StoredProcedure for a collection as an asynchronous operation in the Azure DocumentDB database service.
public System.Threading.Tasks.Task<Microsoft.Azure.Documents.Client.FeedResponse<Microsoft.Azure.Documents.StoredProcedure>> ReadStoredProcedureFeedAsync (string collectionLink, Microsoft.Azure.Documents.Client.FeedOptions options = null);
- collectionLink
- String
The link of the parent document collection resource.
- options
- FeedOptions
(Optional) The FeedOptionsfor this request.
A System.Threading.Tasks containing a ResourceResponse<TResource> which wraps a StoredProcedure containing the read resource record.