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