你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
DocumentClient.ReadStoredProcedureFeedAsync 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
ReadStoredProcedureFeedAsync(String, FeedOptions) |
从 Azure Cosmos DB 服务读取集合的 StoredProcedure 源 (序列) 作为异步操作。 |
ReadStoredProcedureFeedAsync(Uri, FeedOptions) |
读取源 (集合的存储过程的序列) ,作为 Azure Cosmos DB 服务的异步操作。 |
ReadStoredProcedureFeedAsync(String, FeedOptions)
从 Azure Cosmos DB 服务读取集合的 StoredProcedure 源 (序列) 作为异步操作。
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))
参数
- storedProceduresLink
- String
要读取的资源的 SelfLink。 例如 /dbs/db_rid/colls/col_rid/sprocs/
- options
- FeedOptions
(可选) 请求的请求选项。
返回
包含 System.Threading.Tasks 的 , ResourceResponse<TResource> 它包装 StoredProcedure 包含读取资源记录的 。
实现
例外
如果未 storedProceduresLink
设置 。
此异常可以封装许多不同类型的错误。 若要确定特定错误,请始终查看 StatusCode 属性。 创建文档时可能会获取的一些常见代码包括:
StatusCode | 异常原因 |
---|---|
404 | NotFound - 这意味着你尝试读取的资源源不存在。 检查父级 rid 是否正确。 |
429 | TooManyRequests - 这意味着已超出每秒请求单位数。 请参阅 DocumentClientException.RetryAfter 值,了解在重试此操作之前应等待多长时间。 |
示例
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));
另请参阅
适用于
ReadStoredProcedureFeedAsync(Uri, FeedOptions)
读取源 (集合的存储过程的序列) ,作为 Azure Cosmos DB 服务的异步操作。
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))
参数
- storedProceduresUri
- Uri
存储过程的 URI。
- options
- FeedOptions
请求的请求选项。
返回
表示异步操作的服务响应的任务对象。