7 instantiations of RegexMatch
Microsoft.AspNetCore.Rewrite (7)
ApacheModRewrite\RuleBuilder.cs (4)
68match = new RegexMatch(new Regex(input.Operand, RegexOptions.CultureInvariant | RegexOptions.Compiled | RegexOptions.IgnoreCase, _regexTimeout), input.Invert); 72match = new RegexMatch(new Regex(input.Operand, RegexOptions.CultureInvariant | RegexOptions.Compiled, _regexTimeout), input.Invert); 165_match = new RegexMatch(new Regex(input.Operand, RegexOptions.CultureInvariant | RegexOptions.Compiled | RegexOptions.IgnoreCase, _regexTimeout), input.Invert); 169_match = new RegexMatch(new Regex(input.Operand, RegexOptions.CultureInvariant | RegexOptions.Compiled, _regexTimeout), input.Invert);
IISUrlRewrite\UriMatchCondition.cs (1)
32return new RegexMatch(regex, negate);
IISUrlRewrite\UrlRewriteRuleBuilder.cs (2)
50_initialMatch = new RegexMatch(regex, negate); 55_initialMatch = new RegexMatch(regex, negate);
1 reference to RegexMatch
Microsoft.AspNetCore.Rewrite (1)
IISUrlRewrite\UriMatchCondition.cs (1)
23private static RegexMatch CreateRegexMatch(string pattern, bool ignoreCase, bool negate)