Class RangeScan
Assembly: Couchbase.NetClient.dll
Syntax
[InterfaceStability(Level.Volatile)]
public class RangeScan : ScanType, IScanType
Constructors
View Source
RangeScan(ScanTerm, ScanTerm)
Declaration
public RangeScan(ScanTerm from = null, ScanTerm to = null)
Parameters
View Source
RangeScan(ScanTerm, ScanTerm, string)
Declaration
public RangeScan(ScanTerm from, ScanTerm to, string collectionName)
Parameters
View Source
RangeScan(ScanTerm, string)
Declaration
public RangeScan(ScanTerm from, string collectionName)
Parameters
Properties
View Source
From
The starting position of the scan.
Declaration
public ScanTerm From { get; set; }
Property Value
View Source
To
The final position of the scan.
Declaration
public ScanTerm To { get; set; }
Property Value
Implements