8 references to RegexUtil
System.Web (8)
Configuration\HttpCapabilitiesBase.cs (1)
409
Regex regex =
RegexUtil
.CreateRegex("\\.NET CLR (?'clrVersion'[0-9\\.]*)", RegexOptions.None);
Configuration\RegexWorker.cs (1)
92
Regex regex =
RegexUtil
.CreateRegex(regexExpression, RegexOptions.ExplicitCapture);
Security\ADMembershipProvider.cs (2)
743
if( !
RegexUtil
.IsMatch( password, PasswordStrengthRegularExpression, RegexOptions.None, passwordStrengthRegexTimeout ) )
1232
if( !
RegexUtil
.IsMatch( newPassword, PasswordStrengthRegularExpression, RegexOptions.None, passwordStrengthRegexTimeout ) )
Security\MembershipPasswordAttribute.cs (1)
197
passwordStrengthRegex =
RegexUtil
.CreateRegex(passwordStrengthRegularExpression, RegexOptions.None, PasswordStrengthRegexTimeout);
Security\SQLMembershipProvider.cs (2)
337
if( !
RegexUtil
.IsMatch( password, PasswordStrengthRegularExpression, RegexOptions.None, _passwordStrengthRegexTimeout ) )
586
if( !
RegexUtil
.IsMatch( newPassword, PasswordStrengthRegularExpression, RegexOptions.None, _passwordStrengthRegexTimeout ) )
UI\WebControls\RegularExpressionValidator.cs (1)
93
Match m =
RegexUtil
.Match(controlValue, ValidationExpression, RegexOptions.None, MatchTimeout);