6 references to StringMatch
Microsoft.AspNetCore.Rewrite (5)
ApacheModRewrite\RuleBuilder.cs (5)
106
match = new
StringMatch
(input.Operand, StringOperationType.Equal, input.Invert);
109
match = new
StringMatch
(input.Operand, StringOperationType.Greater, input.Invert);
112
match = new
StringMatch
(input.Operand, StringOperationType.GreaterEqual, input.Invert);
115
match = new
StringMatch
(input.Operand, StringOperationType.Less, input.Invert);
118
match = new
StringMatch
(input.Operand, StringOperationType.LessEqual, input.Invert);
Microsoft.AspNetCore.Rewrite.Tests (1)
UrlMatches\StringMatchTests.cs (1)
22
var stringMatch = new
StringMatch
(value, (StringOperationType)operation, ignoreCase);