Метод | Описание | |
---|---|---|
Backward ( ) : |
Iteration will proceed backwards
|
|
Count ( uint count ) : |
Specify the count parameter for iteration Iteration will stop after count elements. |
|
EndKey ( string endKey ) : |
Specify the end key parameter for iteration Iteration will stop at end key, or the first key greater than end key. |
|
Granularity ( uint granularity ) : |
Specify the granularity parameter for iteration Iteration will receive data in batches of granularity size. |
|
Prefix ( string prefix ) : |
Specify the prefix parameter for iteration. Only keys starting with prefix will be returned by the iteration. |
|
StartKey ( string startKey ) : |
Specify the start key parameter for iteration. Iteration will start at start key, or the first key greater than start key. |
Метод | Описание | |
---|---|---|
ToByteRangeParams ( ) : |
public Count ( uint count ) : |
||
count | uint | The count parameter. |
Результат |
public EndKey ( string endKey ) : |
||
endKey | string | The end key parameter as a string. |
Результат |
public Granularity ( uint granularity ) : |
||
granularity | uint | The granularity parameter. |
Результат |
public Prefix ( string prefix ) : |
||
prefix | string | The prefix parameter as a string. |
Результат |
public StartKey ( string startKey ) : |
||
startKey | string | The start key parameter as a string. |
Результат |