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

BitCount() public method

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

            return SendExpectLong(Commands.BitCount, key.ToUtf8Bytes());
        }
RedisNativeClient