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

ZRevRangeWithScores() public method

public ZRevRangeWithScores ( string setId, int min, int max ) : byte[][]
setId string
min int
max int
return byte[][]
        public byte[][] ZRevRangeWithScores(string setId, int min, int max)
        {
            return GetRange(Commands.ZRevRange, setId, min, max, true);
        }
RedisNativeClient