Stop returning records when the specified key is reached. Key must be specified as a JSON value.
Namespace: Couchbase.ViewsAssembly: Couchbase.NetClient (in Couchbase.NetClient.dll) Version: 2.0.0.0 (2.0.0.0)
Syntaxpublic IViewQuery EndKey(
Object endKey,
bool encode
)
public IViewQuery EndKey(
Object endKey,
bool encode
)
Public Function EndKey (
endKey As Object,
encode As Boolean
) As IViewQuery
Public Function EndKey (
endKey As Object,
encode As Boolean
) As IViewQuery
public:
virtual IViewQuery^ EndKey(
Object^ endKey,
bool encode
) sealed
public:
virtual IViewQuery^ EndKey(
Object^ endKey,
bool encode
) sealed
abstract EndKey :
endKey : Object *
encode : bool -> IViewQuery
override EndKey :
endKey : Object *
encode : bool -> IViewQuery
abstract EndKey :
endKey : Object *
encode : bool -> IViewQuery
override EndKey :
endKey : Object *
encode : bool -> IViewQuery
Parameters
- endKey
- Type: System.Object
The key to stop at
- encode
- Type: System.Boolean
True to JSON encode and URI escape the value.
Return Value
Type:
IViewQueryAn IViewQuery object for chaining
Implements
IViewQuery.EndKey(Object, Boolean)
See Also