DocumentClient.ReadStoredProcedureFeedAsync 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.
Overloads
ReadStoredProcedureFeedAsync(String, FeedOptions) |
Reads the feed (sequence) of StoredProcedure for a collection from the Azure Cosmos DB service as an asynchronous operation. |
ReadStoredProcedureFeedAsync(Uri, FeedOptions) |
Reads the feed (sequence) of stored procedures for a collection as an asynchronous operation from the Azure Cosmos DB service. |
ReadStoredProcedureFeedAsync(String, FeedOptions)
Reads the feed (sequence) of StoredProcedure for a collection from the Azure Cosmos DB service as an asynchronous operation.
public System.Threading.Tasks.Task<Microsoft.Azure.Documents.Client.FeedResponse<Microsoft.Azure.Documents.StoredProcedure>> ReadStoredProcedureFeedAsync (string storedProceduresLink, Microsoft.Azure.Documents.Client.FeedOptions options = default);
abstract member ReadStoredProcedureFeedAsync : string * Microsoft.Azure.Documents.Client.FeedOptions -> System.Threading.Tasks.Task<Microsoft.Azure.Documents.Client.FeedResponse<Microsoft.Azure.Documents.StoredProcedure>>
override this.ReadStoredProcedureFeedAsync : string * Microsoft.Azure.Documents.Client.FeedOptions -> System.Threading.Tasks.Task<Microsoft.Azure.Documents.Client.FeedResponse<Microsoft.Azure.Documents.StoredProcedure>>
Public Function ReadStoredProcedureFeedAsync (storedProceduresLink As String, Optional options As FeedOptions = Nothing) As Task(Of FeedResponse(Of StoredProcedure))
Parameters
- storedProceduresLink
- String
The SelfLink of the resources to be read. E.g. /dbs/db_rid/colls/col_rid/sprocs/
- options
- FeedOptions
(Optional) The request options for the request.
Returns
A System.Threading.Tasks containing a ResourceResponse<TResource> which wraps a StoredProcedure containing the read resource record.
Implements
Exceptions
If storedProceduresLink
is not set.
This exception can encapsulate many different types of errors. To determine the specific error always look at the StatusCode property. Some common codes you may get when creating a Document are:
StatusCode | Reason for exception |
---|---|
404 | NotFound - This means the resource feed you tried to read did not exist. Check the parent rids are correct. |
429 | TooManyRequests - This means you have exceeded the number of request units per second. Consult the DocumentClientException.RetryAfter value to see how long you should wait before retrying this operation. |
Examples
int count = 0;
string continuation = string.Empty;
do
{
// Read the feed 10 items at a time until there are no more items to read
FeedResponse<StoredProcedure> response = await client.ReadStoredProcedureFeedAsync("/dbs/db_rid/colls/col_rid/sprocs/",
new FeedOptions
{
MaxItemCount = 10,
RequestContinuation = continuation
});
// Append the item count
count += response.Count;
// Get the continuation so that we know when to stop.
continuation = response.ResponseContinuation;
} while (!string.IsNullOrEmpty(continuation));
See also
Applies to
ReadStoredProcedureFeedAsync(Uri, FeedOptions)
Reads the feed (sequence) of stored procedures for a collection as an asynchronous operation from the Azure Cosmos DB service.
public System.Threading.Tasks.Task<Microsoft.Azure.Documents.Client.FeedResponse<Microsoft.Azure.Documents.StoredProcedure>> ReadStoredProcedureFeedAsync (Uri storedProceduresUri, Microsoft.Azure.Documents.Client.FeedOptions options = default);
abstract member ReadStoredProcedureFeedAsync : Uri * Microsoft.Azure.Documents.Client.FeedOptions -> System.Threading.Tasks.Task<Microsoft.Azure.Documents.Client.FeedResponse<Microsoft.Azure.Documents.StoredProcedure>>
override this.ReadStoredProcedureFeedAsync : Uri * Microsoft.Azure.Documents.Client.FeedOptions -> System.Threading.Tasks.Task<Microsoft.Azure.Documents.Client.FeedResponse<Microsoft.Azure.Documents.StoredProcedure>>
Public Function ReadStoredProcedureFeedAsync (storedProceduresUri As Uri, Optional options As FeedOptions = Nothing) As Task(Of FeedResponse(Of StoredProcedure))
Parameters
- storedProceduresUri
- Uri
the URI for the stored procedures.
- options
- FeedOptions
The request options for the request.
Returns
The task object representing the service response for the asynchronous operation.
Implements
Applies to
Azure SDK for .NET