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

ZRevRangeByScore() public method

public ZRevRangeByScore ( 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[][] ZRevRangeByScore(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, false);
        }

Same methods

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