Class ScanTerm
A single Scan
Inherited Members
Namespace: Couchbase.KeyValue .RangeScan
Assembly: Couchbase.NetClient.dll
Syntax
[InterfaceStability(Level.Volatile)]
public sealed class ScanTerm
Properties
| Edit this page View SourceId
The term to scan.
Declaration
public string Id { get; }
Property Value
Type | Description |
---|---|
string |
IsExclusive
Controls whether the scan is inclusive or exclusive.
Declaration
public bool IsExclusive { get; }
Property Value
Type | Description |
---|---|
bool |
Methods
| Edit this page View SourceExclusive(string)
Creates an exclusive scan for a term.
Declaration
public static ScanTerm Exclusive(string id)
Parameters
Type | Name | Description |
---|---|---|
string | id | The term to scan. |
Returns
| Edit this page View SourceInclusive(string)
Creates an Inclusive scan for a term.
Declaration
public static ScanTerm Inclusive(string id)
Parameters
Type | Name | Description |
---|---|---|
string | id | The term to scan. |