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

ZRangeWithScores() public method

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