Mono.Cecil.Inject.Logger.IsSet C# (CSharp) Method

IsSet() public static method

Checks whether a certaing logging flag is set.
public static IsSet ( uint mask ) : bool
mask uint The flag to check.
return bool
        public static bool IsSet(uint mask)
        {
            return mask == (logMask & mask);
        }