8 instantiations of IntegerMatch
Microsoft.AspNetCore.Rewrite (6)
ApacheModRewrite\RuleBuilder.cs (6)
80
match = new
IntegerMatch
(input.Operand, IntegerOperationType.Equal);
83
match = new
IntegerMatch
(input.Operand, IntegerOperationType.Greater);
86
match = new
IntegerMatch
(input.Operand, IntegerOperationType.GreaterEqual);
89
match = new
IntegerMatch
(input.Operand, IntegerOperationType.Less);
92
match = new
IntegerMatch
(input.Operand, IntegerOperationType.LessEqual);
95
match = new
IntegerMatch
(input.Operand, IntegerOperationType.NotEqual);
Microsoft.AspNetCore.Rewrite.Tests (2)
UrlMatches\IntegerMatchTests.cs (2)
14
var ex = Assert.Throws<FormatException>(() => new
IntegerMatch
("Not an int", IntegerOperationType.Equal));
31
var integerMatch = new
IntegerMatch
(value, (IntegerOperationType)operation);
1 reference to IntegerMatch
Microsoft.AspNetCore.Rewrite.Tests (1)
UrlMatches\IntegerMatchTests.cs (1)
31
var
integerMatch = new IntegerMatch(value, (IntegerOperationType)operation);