次の方法で共有


DocumentClient.ReadConflictFeedAsync メソッド

定義

オーバーロード

ReadConflictFeedAsync(String, FeedOptions)

Azure Cosmos DB サービスからコレクションの Conflict フィード (シーケンス) を非同期操作として読み取ります。

ReadConflictFeedAsync(Uri, FeedOptions)

Azure Cosmos DB サービスから非同期操作として、コレクションの競合のフィード (シーケンス) を読み取ります。

ReadConflictFeedAsync(String, FeedOptions)

Azure Cosmos DB サービスからコレクションの Conflict フィード (シーケンス) を非同期操作として読み取ります。

public System.Threading.Tasks.Task<Microsoft.Azure.Documents.Client.FeedResponse<Microsoft.Azure.Documents.Conflict>> ReadConflictFeedAsync (string conflictsLink, Microsoft.Azure.Documents.Client.FeedOptions options = default);
abstract member ReadConflictFeedAsync : string * Microsoft.Azure.Documents.Client.FeedOptions -> System.Threading.Tasks.Task<Microsoft.Azure.Documents.Client.FeedResponse<Microsoft.Azure.Documents.Conflict>>
override this.ReadConflictFeedAsync : string * Microsoft.Azure.Documents.Client.FeedOptions -> System.Threading.Tasks.Task<Microsoft.Azure.Documents.Client.FeedResponse<Microsoft.Azure.Documents.Conflict>>
Public Function ReadConflictFeedAsync (conflictsLink As String, Optional options As FeedOptions = Nothing) As Task(Of FeedResponse(Of Conflict))

パラメーター

conflictsLink
String

読み取るリソースの SelfLink。 例: /dbs/db_rid/colls/coll_rid/conflicts/

options
FeedOptions

(省略可能)要求の要求オプション。

戻り値

System.Threading.Tasks読み取りリソース レコードをResourceResponse<TResource>含む をConflictラップする を含む 。

実装

例外

が設定されていない場合 conflictsLink

この例外は、さまざまな種類のエラーをカプセル化できます。 特定のエラーを特定するには、常に StatusCode プロパティを参照してください。 ドキュメントの作成時に取得できる一般的なコードは次のとおりです。

StatusCode例外の理由
404NotFound - 読み取ろうとしたリソース フィードが存在しなかったことを意味します。 親の rid が正しいことを確認します。
429TooManyRequests - つまり、1 秒あたりの要求ユニット数を超えています。 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<Conflict> response = await client.ReadConflictAsync("/dbs/db_rid/colls/coll_rid/conflicts/",
                                                    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));

こちらもご覧ください

適用対象

ReadConflictFeedAsync(Uri, FeedOptions)

Azure Cosmos DB サービスから非同期操作として、コレクションの競合のフィード (シーケンス) を読み取ります。

public System.Threading.Tasks.Task<Microsoft.Azure.Documents.Client.FeedResponse<Microsoft.Azure.Documents.Conflict>> ReadConflictFeedAsync (Uri conflictsUri, Microsoft.Azure.Documents.Client.FeedOptions options = default);
abstract member ReadConflictFeedAsync : Uri * Microsoft.Azure.Documents.Client.FeedOptions -> System.Threading.Tasks.Task<Microsoft.Azure.Documents.Client.FeedResponse<Microsoft.Azure.Documents.Conflict>>
override this.ReadConflictFeedAsync : Uri * Microsoft.Azure.Documents.Client.FeedOptions -> System.Threading.Tasks.Task<Microsoft.Azure.Documents.Client.FeedResponse<Microsoft.Azure.Documents.Conflict>>
Public Function ReadConflictFeedAsync (conflictsUri As Uri, Optional options As FeedOptions = Nothing) As Task(Of FeedResponse(Of Conflict))

パラメーター

conflictsUri
Uri

競合の URI。

options
FeedOptions

要求の要求オプション。

戻り値

非同期操作のサービス応答を表すタスク オブジェクト。

実装

適用対象