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

ZCount() public method

public ZCount ( string setId, double min, double max ) : long
setId string
min double
max double
return long
        public long ZCount(string setId, double min, double max)
        {
            if (setId == null)
                throw new ArgumentNullException("setId");

            return SendExpectLong(Commands.ZCount, setId.ToUtf8Bytes(), min.ToUtf8Bytes(), max.ToUtf8Bytes());
        }

Same methods

RedisNativeClient::ZCount ( string setId, long min, long max ) : long
RedisNativeClient