Pomona.Example.CritterTypeMappingFilter.GetPropertyFlags C# (CSharp) Method

GetPropertyFlags() public method

public GetPropertyFlags ( PropertyInfo propertyInfo ) : PropertyFlags?
propertyInfo System.Reflection.PropertyInfo
return PropertyFlags?
        public override PropertyFlags? GetPropertyFlags(PropertyInfo propertyInfo)
        {
            if (propertyInfo.Name == "IsNotAllowedInFilters")
                return base.GetPropertyFlags(propertyInfo) & ~PropertyFlags.AllowsFiltering;
            return base.GetPropertyFlags(propertyInfo);
        }