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