8 references to RegexUtil
System.Web (8)
Configuration\HttpCapabilitiesBase.cs (1)
409Regex regex = RegexUtil.CreateRegex("\\.NET CLR (?'clrVersion'[0-9\\.]*)", RegexOptions.None);
Configuration\RegexWorker.cs (1)
92Regex regex = RegexUtil.CreateRegex(regexExpression, RegexOptions.ExplicitCapture);
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);