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
Namespace: Couchbase.Lite
Assembly: Couchbase.Lite.dll
Syntax
public class Conflict : object
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 |