IDocumentClient.ReadConflictAsync
Method
Definition
Overloads
| ReadConflictAsync(String, RequestOptions) |
Reads a Conflict as an asynchronous operation in the Azure DocumentDB database service. |
| ReadConflictAsync(Uri, RequestOptions) |
Reads a Conflict as an asynchronous operation in the Azure DocumentDB database service. |
ReadConflictAsync(String, RequestOptions)
Reads a Conflict as an asynchronous operation in the Azure DocumentDB database service.
public System.Threading.Tasks.Task<Microsoft.Azure.Documents.Client.ResourceResponse<Microsoft.Azure.Documents.Conflict>> ReadConflictAsync (string conflictLink, Microsoft.Azure.Documents.Client.RequestOptions options = null);
- conflictLink
- String
The link to the Conflict to be read.
- options
- RequestOptions
(Optional) The RequestOptionsfor this request.
A System.Threading.Tasks containing a ResourceResponse<TResource> which wraps a Conflict containing the read resource record.
ReadConflictAsync(Uri, RequestOptions)
Reads a Conflict as an asynchronous operation in the Azure DocumentDB database service.
public System.Threading.Tasks.Task<Microsoft.Azure.Documents.Client.ResourceResponse<Microsoft.Azure.Documents.Conflict>> ReadConflictAsync (Uri conflictUri, Microsoft.Azure.Documents.Client.RequestOptions options = null);
- conflictUri
- Uri
A URI to the Conflict resource to be read.
- options
- RequestOptions
(Optional) The RequestOptions for the request.
A System.Threading.Tasks containing a ResourceResponse<TResource> which wraps a Conflict containing the read resource record.