ModelBuilder.CreationRule.IsMatch C# (CSharp) Method

IsMatch() public method

Gets whether the specified type and property name match this rule.
public IsMatch ( Type type, string propertyName ) : bool
type System.Type The type to match.
propertyName string The property name to match.
return bool
        public bool IsMatch(Type type, string propertyName)
        {
            return _evaluator(type, propertyName);
        }