ModelBuilder.ExecuteOrderRule.IsMatch C# (CSharp) 메소드

IsMatch() 공개 메소드

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.
리턴 bool
        public bool IsMatch(Type type, string propertyName)
        {
            return _func(type, propertyName);
        }