ConflictResolutionPolicy.ResolutionPath Property

Definition

Gets or sets the path which is present in each item in the Azure Cosmos DB service for last writer wins conflict-resolution. This path must be present in each item and must be an integer value. In case of a conflict occurring on a item, the item with the higher integer value in the specified path will be picked. If the path is unspecified, by default the time stamp path will be used.

[Newtonsoft.Json.JsonProperty(NullValueHandling=Newtonsoft.Json.NullValueHandling.Ignore, PropertyName="conflictResolutionPath")]
public string ResolutionPath { get; set; }
[<Newtonsoft.Json.JsonProperty(NullValueHandling=Newtonsoft.Json.NullValueHandling.Ignore, PropertyName="conflictResolutionPath")>]
member this.ResolutionPath : string with get, set
Public Property ResolutionPath As String

Property Value

The path to check values for last-writer wins conflict resolution. That path is a rooted path of the property in the item, such as "/name/first".

Attributes
Newtonsoft.Json.JsonPropertyAttribute

Examples

conflictResolutionPolicy.ConflictResolutionPath = "/name/first";

Remarks

This value should only be set when using LastWriterWins

Applies to