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

ZRangeByScore() public method

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

Same methods

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