ModelBuilder.ExecuteOrderRule.IsMatch C# (CSharp) Méthode

IsMatch() public méthode

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