17 references to IntegerOperationType
Microsoft.AspNetCore.Rewrite (17)
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);
UrlMatches\IntegerMatch.cs (11)
12private readonly IntegerOperationType _operation; 13public IntegerMatch(int value, IntegerOperationType operation) 19public IntegerMatch(string value, IntegerOperationType operation) 28if (operation < IntegerOperationType.Equal || operation > IntegerOperationType.NotEqual) 46case IntegerOperationType.Equal: 48case IntegerOperationType.Greater: 50case IntegerOperationType.GreaterEqual: 52case IntegerOperationType.Less: 54case IntegerOperationType.LessEqual: 56case IntegerOperationType.NotEqual: