System.Configuration.RegexStringValidatorAttribute.RegexStringValidatorAttribute C# (CSharp) 메소드

RegexStringValidatorAttribute() 공개 메소드

public RegexStringValidatorAttribute ( string regex ) : System
regex string
리턴 System
        public RegexStringValidatorAttribute(string regex) {
            _regex = regex;
        }
        public override ConfigurationValidatorBase ValidatorInstance {
RegexStringValidatorAttribute