Bytes2you.Validation.ValidationPredicates.StringPredicates.StringRegexMatchValidationPredicate.GetUnmatchMessage C# (CSharp) 메소드

GetUnmatchMessage() 보호된 메소드

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