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

GetUnmatchMessage() protected method

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