Bytes2you.Validation.ValidationPredicates.StringPredicates.StringRegexMatchValidationPredicate.GetUnmatchMessage C# (CSharp) Méthode

GetUnmatchMessage() protected méthode

protected GetUnmatchMessage ( string value ) : string
value string
Résultat string
        protected override string GetUnmatchMessage(string value)
        {
            return MessageFormatHelper.Format(
                ValidationPredicateMessages.NotRegexMatchStringMessage,
                value,
                this.Pattern);
        }