BookSleeve.RedisConnection.ISortedSetCommands C# (CSharp) Method

ISortedSetCommands() private method

private ISortedSetCommands ( int db, string key, long start, long stop, bool ascending, bool queueJump ) : double>[]>.Task
db int
key string
start long
stop long
ascending bool
queueJump bool
return double>[]>.Task
        Task<KeyValuePair<byte[], double>[]> ISortedSetCommands.Range(int db, string key, long start, long stop, bool ascending, bool queueJump)
        {
            return ExecutePairs(RedisMessage.Create(db, ascending ? RedisLiteral.ZRANGE : RedisLiteral.ZREVRANGE, key, start, stop, RedisLiteral.WITHSCORES), queueJump);
        }

Same methods

RedisConnection::ISortedSetCommands ( int db, string key, double min, double max, bool ascending, bool minInclusive, bool maxInclusive, long offset, long count, bool queueJump ) : double>[]>.Task
RedisConnection::ISortedSetCommands ( int db, string key, long start, long stop, bool ascending, bool queueJump ) : double>[]>.Task
RedisConnection::ISortedSetCommands ( int db, string key, byte member, bool queueJump ) : Task
RedisConnection::ISortedSetCommands ( int db, string key, byte value, double score, bool queueJump ) : Task
RedisConnection::ISortedSetCommands ( int db, string key, string member, bool queueJump ) : Task
RedisConnection::ISortedSetCommands ( int db, string key, string value, double score, bool queueJump ) : Task
RedisConnection::ISortedSetCommands ( int db, string key, byte member, bool queueJump ) : Task
RedisConnection::ISortedSetCommands ( int db, string key, byte member, double delta, bool queueJump ) : Task
RedisConnection::ISortedSetCommands ( int db, string key, string member, bool queueJump ) : Task
RedisConnection::ISortedSetCommands ( int db, string key, string member, double delta, bool queueJump ) : Task
RedisConnection::ISortedSetCommands ( int db, string key, byte members, double delta, bool queueJump ) : Task[]
RedisConnection::ISortedSetCommands ( int db, string key, string members, double delta, bool queueJump ) : Task[]
RedisConnection::ISortedSetCommands ( int db, string key, bool queueJump ) : Task
RedisConnection::ISortedSetCommands ( int db, string key, byte members, bool queueJump ) : Task
RedisConnection::ISortedSetCommands ( int db, string key, byte member, bool ascending, bool queueJump ) : Task
RedisConnection::ISortedSetCommands ( int db, string key, double min, double max, bool queueJump ) : Task
RedisConnection::ISortedSetCommands ( int db, string key, double min, double max, bool minInclusive, bool maxInclusive, bool queueJump ) : Task
RedisConnection::ISortedSetCommands ( int db, string key, long start, long stop, bool queueJump ) : Task
RedisConnection::ISortedSetCommands ( int db, string key, string members, bool queueJump ) : Task
RedisConnection::ISortedSetCommands ( int db, string key, string member, bool ascending, bool queueJump ) : Task