10 references to RegexMatch
Microsoft.AspNetCore.Rewrite (7)
ApacheModRewrite\RuleBuilder.cs (4)
68
match = new
RegexMatch
(new Regex(input.Operand, RegexOptions.CultureInvariant | RegexOptions.Compiled | RegexOptions.IgnoreCase, _regexTimeout), input.Invert);
72
match = 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)
32
return new
RegexMatch
(regex, negate);
IISUrlRewrite\UrlRewriteRuleBuilder.cs (2)
50
_initialMatch = new
RegexMatch
(regex, negate);
55
_initialMatch = new
RegexMatch
(regex, negate);
Microsoft.AspNetCore.Rewrite.Tests (3)
IISUrlRewrite\FileParserTests.cs (3)
57
condList.Add(new Condition(new InputParser().ParseInputString("{HTTPS}"), new
RegexMatch
(new Regex("^OFF$"), false)));
97
condList.Add(new Condition(new InputParser().ParseInputString("{HTTPS}"), new
RegexMatch
(new Regex("^OFF$"), false)));
190
new
RegexMatch
(new Regex("^OFF$"), negate),