Exemple #1
0
        private bool IsInvalidMatched(string Input)
        {
            if (this.Enabled == false)
            {
                return(true);
            }
            StringValidation sv = this.GetFirstActiveValidation();

            if (sv != null)
            {
                return(sv.IsInvalidMatched(Input));
            }
            else
            {
                return(false);
            }
        }