19 references to None
System (8)
regex\system\text\regularexpressions\Regex.cs (8)
209: this(pattern, RegexOptions.None, DefaultMatchTimeout, false) { 243if (options < RegexOptions.None || ( ((int) options) >> MaxOptionShift) != 0) 726return IsMatch(input, pattern, RegexOptions.None, DefaultMatchTimeout); 799return Match(input, pattern, RegexOptions.None, DefaultMatchTimeout); 887return Matches(input, pattern, RegexOptions.None, DefaultMatchTimeout); 960return Replace(input, pattern, replacement, RegexOptions.None, DefaultMatchTimeout); 1061return Replace(input, pattern, evaluator, RegexOptions.None, DefaultMatchTimeout); 1150return Split(input, pattern, RegexOptions.None, DefaultMatchTimeout);
System.Web (9)
Configuration\HttpCapabilitiesBase.cs (1)
409Regex regex = RegexUtil.CreateRegex("\\.NET CLR (?'clrVersion'[0-9\\.]*)", RegexOptions.None);
Security\ADMembershipProvider.cs (2)
743if( !RegexUtil.IsMatch( password, PasswordStrengthRegularExpression, RegexOptions.None, passwordStrengthRegexTimeout ) ) 1232if( !RegexUtil.IsMatch( newPassword, PasswordStrengthRegularExpression, RegexOptions.None, passwordStrengthRegexTimeout ) )
Security\MembershipPasswordAttribute.cs (1)
197passwordStrengthRegex = RegexUtil.CreateRegex(passwordStrengthRegularExpression, RegexOptions.None, PasswordStrengthRegexTimeout);
Security\SQLMembershipProvider.cs (2)
337if( !RegexUtil.IsMatch( password, PasswordStrengthRegularExpression, RegexOptions.None, _passwordStrengthRegexTimeout ) ) 586if( !RegexUtil.IsMatch( newPassword, PasswordStrengthRegularExpression, RegexOptions.None, _passwordStrengthRegexTimeout ) )
UI\WebControls\RegularExpressionValidator.cs (1)
93Match m = RegexUtil.Match(controlValue, ValidationExpression, RegexOptions.None, MatchTimeout);
Util\Wildcard.cs (2)
90RegexOptions options = RegexOptions.None; 237options = RegexOptions.None;
System.Xml (2)
System\Xml\Schema\FacetChecker.cs (2)
304derivedRestriction.Patterns.Add(new Regex(Preprocess(regStr.ToString()), RegexOptions.None)); 1110Regex langRegex = new Regex("^([a-zA-Z]{1,8})(-[a-zA-Z0-9]{1,8})*$", RegexOptions.None);