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

ZCard() public method

public ZCard ( string setId ) : long
setId string
return long
        public long ZCard(string setId)
        {
            if (setId == null)
                throw new ArgumentNullException("setId");

            return SendExpectLong(Commands.ZCard, setId.ToUtf8Bytes());
        }
RedisNativeClient