MvvmValidation.Internal.PropertyCollectionValidationTarget.IsMatch C# (CSharp) Method

IsMatch() public method

public IsMatch ( object target ) : bool
target object
return bool
        public bool IsMatch(object target)
        {
            return Properties.Any(p => Equals(p, target));
        }