Freigeben über


DocumentClient.ReadConflictFeedAsync Methode

Definition

Überlädt

ReadConflictFeedAsync(String, FeedOptions)

Liest den Feed (die Sequenz) von Conflict für eine Sammlung aus dem Azure Cosmos DB-Dienst als asynchronen Vorgang.

ReadConflictFeedAsync(Uri, FeedOptions)

Liest den Feed (die Sequenz) von Konflikten für eine Sammlung als asynchronen Vorgang aus dem Azure Cosmos DB-Dienst.

ReadConflictFeedAsync(String, FeedOptions)

Liest den Feed (die Sequenz) von Conflict für eine Sammlung aus dem Azure Cosmos DB-Dienst als asynchronen Vorgang.

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))

Parameter

conflictsLink
String

Der SelfLink der zu lesenden Ressourcen. Beispiel: /dbs/db_rid/colls/coll_rid/conflicts/

options
FeedOptions

(Optional) Die Anforderungsoptionen für die Anforderung.

Gibt zurück

Eine System.Threading.Tasks , die ein ResourceResponse<TResource> enthält, das einen Conflict umschließt, der den gelesenen Ressourcendatensatz enthält.

Implementiert

Ausnahmen

Wenn conflictsLink nicht festgelegt ist.

Diese Ausnahme kann viele verschiedene Fehlertypen kapseln. Um den spezifischen Fehler zu ermitteln, sehen Sie sich immer die StatusCode-Eigenschaft an. Einige häufige Codes, die Sie beim Erstellen eines Dokuments erhalten können, sind:

StatusCodeGrund für die Ausnahme
404NotFound: Dies bedeutet, dass der Ressourcenfeed, den Sie lesen möchten, nicht vorhanden war. Überprüfen Sie, ob die übergeordneten Rids korrekt sind.
429TooManyRequests: Dies bedeutet, dass Sie die Anzahl der Anforderungseinheiten pro Sekunde überschritten haben. Lesen Sie den DocumentClientException.RetryAfter-Wert, um zu sehen, wie lange Sie warten sollten, bevor Sie diesen Vorgang wiederholen.

Beispiele

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));

Weitere Informationen

Gilt für:

ReadConflictFeedAsync(Uri, FeedOptions)

Liest den Feed (die Sequenz) von Konflikten für eine Sammlung als asynchronen Vorgang aus dem Azure Cosmos DB-Dienst.

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))

Parameter

conflictsUri
Uri

der URI für die Konflikte.

options
FeedOptions

Die Anforderungsoptionen für die Anforderung.

Gibt zurück

Das Aufgabenobjekt, das die Dienstantwort für den asynchronen Vorgang darstellt.

Implementiert

Gilt für: