BookSleeve.RedisConnection.IncrementSortedSet C# (CSharp) Method

IncrementSortedSet() private method

private IncrementSortedSet ( int db, string key, byte value, double score, bool queueJump = false ) : Task
db int
key string
value byte
score double
queueJump bool
return Task
        public Task<double> IncrementSortedSet(int db, string key, byte[] value, double score, bool queueJump = false)
        {
            return SortedSets.Increment(db, key, value, score, queueJump);
        }

Same methods

RedisConnection::IncrementSortedSet ( int db, string key, string value, double score, bool queueJump = false ) : Task
RedisConnection::IncrementSortedSet ( int db, string key, double score, byte values, bool queueJump = false ) : Task[]
RedisConnection::IncrementSortedSet ( int db, string key, double score, string values, bool queueJump = false ) : Task[]