Class Conflict
Conflict contains information of the conflicted documents, including local and remote document’s content. The null content means that the document is deleted.
Inheritance
System.Object
Conflict
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Couchbase.Lite
Assembly: Couchbase.Lite.dll
Syntax
public class Conflict
Properties
| Improve this Doc View SourceDocumentID
The conflict resolved document id.
Declaration
public string DocumentID { get; }
Property Value
Type | Description |
---|---|
System.String |
LocalDocument
The document in local database. If null, the document is deleted.
Declaration
public Document LocalDocument { get; }
Property Value
Type | Description |
---|---|
Document |
RemoteDocument
The document in remote database. If null, the document is deleted.
Declaration
public Document RemoteDocument { get; }
Property Value
Type | Description |
---|---|
Document |