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 [SerializableAttribute]
[FlagsAttribute]
public enum DocumentContentOptions
Members
| Member name | Value | Description |
---|
| None | 0 |
Include only the default information
|
| IncludeAttachments | 2 |
Include attachment data
|
| IncludeConflicts | 4 |
Include currently conflicting revisions
|
| IncludeRevs | 8 |
Include a list of revisions
|
| IncludeRevsInfo | 16 |
Include the status of each revision (i.e. whether available, missing, or deleted)
|
| IncludeLocalSeq | 32 |
Include the latest sequence number in the database
|
| NoBody | 64 | Obsolete.
Don't include the JSON properties
|
| BigAttachmentsFollow | 128 | Obsolete.
Attachments over a certain size are sent via a multipart response
|
| NoAttachments | 256 | Obsolete.
Don't include attachments
|
| IncludeExpiration | 512 |
Includes the document's expiration time, if it has any
|
See Also