Bytes2you.Validation.ValidationPredicates.StringPredicates.StringRegexMatchValidationPredicate.GetMatchMessage C# (CSharp) Method

GetMatchMessage() protected method

protected GetMatchMessage ( string value ) : string
value string
return string
        protected override string GetMatchMessage(string value)
        {
            return MessageFormatHelper.Format(
                ValidationPredicateMessages.RegexMatchStringMessage,
                value,
                this.Pattern);
        }