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