ServiceStack.Redis.RedisNativeClient.ZRevRangeByScoreWithScores C# (CSharp) Method

ZRevRangeByScoreWithScores() public method

public ZRevRangeByScoreWithScores ( string setId, double min, double max, int skip, int take ) : byte[][]
setId string
min double
max double
skip int
take int
return byte[][]
        public byte[][] ZRevRangeByScoreWithScores(string setId, double min, double max, int? skip, int? take)
        {
            //Note: http://redis.io/commands/zrevrangebyscore has max, min in the wrong other
            return GetRangeByScore(Commands.ZRevRangeByScore, setId, max, min, skip, take, true);
        }

Same methods

RedisNativeClient::ZRevRangeByScoreWithScores ( string setId, long min, long max, int skip, int take ) : byte[][]
RedisNativeClient