Click or drag to resize

DocumentContentOptions Enumeration

Options for what metadata to include in document bodies

Namespace:  Couchbase.Lite
Assembly:  Couchbase.Lite (in Couchbase.Lite.dll) Version: 1.4.1-b107
Syntax
C#
[SerializableAttribute]
[FlagsAttribute]
public enum DocumentContentOptions
Members
  Member nameValueDescription
None0 Include only the default information
IncludeAttachments2 Include attachment data
IncludeConflicts4 Include currently conflicting revisions
IncludeRevs8 Include a list of revisions
IncludeRevsInfo16 Include the status of each revision (i.e. whether available, missing, or deleted)
IncludeLocalSeq32 Include the latest sequence number in the database
NoBody64 Obsolete. Don't include the JSON properties
BigAttachmentsFollow128 Obsolete. Attachments over a certain size are sent via a multipart response
NoAttachments256 Obsolete. Don't include attachments
IncludeExpiration512 Includes the document's expiration time, if it has any
See Also