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

ZRangeByScoreWithScores() public method

public ZRangeByScoreWithScores ( 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[][] ZRangeByScoreWithScores(string setId, double min, double max, int? skip, int? take)
        {
            return GetRangeByScore(Commands.ZRangeByScore, setId, min, max, skip, take, true);
        }

Same methods

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