BookSleeve.RedisConnection.ISortedSetCommands C# (CSharp) Method

ISortedSetCommands() private method

private ISortedSetCommands ( int db, string key, byte members, double delta, bool queueJump ) : Task[]
db int
key string
members byte
delta double
queueJump bool
return Task[]
        Task<double>[] ISortedSetCommands.Increment(int db, string key, byte[][] members, double delta, bool queueJump)
        {
            if (members == null) throw new ArgumentNullException("members");
            Task<double>[] result = new Task<double>[members.Length];
            var ss = SortedSets;
            for (int i = 0; i < members.Length; i++)
            {
                result[i] = ss.Increment(db, key, members[i], delta, queueJump);
            }
            return result;
        }

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, 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, 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