ServiceStack.Host.MetadataTypeExtensions.Has C# (CSharp) Method

Has() public static method

public static Has ( this feature, Feature flag ) : bool
feature this
flag Feature
return bool
        public static bool Has(this Feature feature, Feature flag) => 
            (flag & feature) != 0;
    }