IDocumentClient.ReadConflictFeedAsync
Method
Definition
Overloads
| ReadConflictFeedAsync(Uri, FeedOptions) |
Reads the feed (sequence) of conflicts for a collection as an asynchronous operation in the Azure DocumentDB database service. |
| ReadConflictFeedAsync(String, FeedOptions) |
Reads the feed (sequence) of Conflict for a collection as an asynchronous operation in the Azure DocumentDB database service. |
ReadConflictFeedAsync(Uri, FeedOptions)
Reads the feed (sequence) of conflicts 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.Conflict>> ReadConflictFeedAsync (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.
ReadConflictFeedAsync(String, FeedOptions)
Reads the feed (sequence) of Conflict 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.Conflict>> ReadConflictFeedAsync (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 Conflict containing the read resource record.