Couchbase .NET SDK __CB_SDK_VERSION__

Show / Hide Table of Contents

Class RangeScan

A range scan.

Inheritance
object
ScanType
RangeScan
PrefixScan
Implements
IScanType
Inherited Members
ScanType.RangeScan(ScanTerm, ScanTerm)
ScanType.PrefixScan(string)
ScanType.SamplingScan(ulong)
ScanType.SamplingScan(ulong, ulong)
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Couchbase.KeyValue.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
Type Name Description
ScanTerm from
ScanTerm to
View Source

RangeScan(ScanTerm, ScanTerm, string)

Declaration
public RangeScan(ScanTerm from, ScanTerm to, string collectionName)
Parameters
Type Name Description
ScanTerm from
ScanTerm to
string collectionName
View Source

RangeScan(ScanTerm, string)

Declaration
public RangeScan(ScanTerm from, string collectionName)
Parameters
Type Name Description
ScanTerm from
string collectionName

Properties

View Source

From

The starting position of the scan.

Declaration
public ScanTerm From { get; set; }
Property Value
Type Description
ScanTerm
View Source

To

The final position of the scan.

Declaration
public ScanTerm To { get; set; }
Property Value
Type Description
ScanTerm

Implements

IScanType
  • View Source
In this article
Back to top Copyright © 2020 Couchbase, Inc. All rights reserved.