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

SCard() public method

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

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