1 write to Template
Microsoft.AspNetCore.Rewrite (1)
ParserContext.cs (1)
17
Template
= condition;
13 references to Template
Microsoft.AspNetCore.Rewrite (13)
ApacheModRewrite\ConditionPatternParser.cs (7)
145
throw new FormatException(Resources.FormatError_InputParserUnrecognizedParameter(context.
Template
, context.Index));
169
throw new FormatException(Resources.FormatError_InputParserUnrecognizedParameter(context.
Template
, context.Index));
175
throw new FormatException(Resources.FormatError_InputParserUnrecognizedParameter(context.
Template
, context.Index));
184
throw new FormatException(Resources.FormatError_InputParserUnrecognizedParameter(context.
Template
, context.Index));
200
throw new FormatException(Resources.FormatError_InputParserUnrecognizedParameter(context.
Template
, context.Index));
205
throw new FormatException(Resources.FormatError_InputParserUnrecognizedParameter(context.
Template
, context.Index));
209
throw new FormatException(Resources.FormatError_InputParserUnrecognizedParameter(context.
Template
, context.Index));
ApacheModRewrite\TestStringParser.cs (1)
138
throw new FormatException(Resources.FormatError_InputParserInvalidInteger(context.
Template
, context.Index));
ParserContext.cs (5)
21
public char Current => (Index <
Template
.Length && Index >= 0) ?
Template
[Index] : (char)0;
30
return ++Index <
Template
.Length;
35
return (Index + 1) <
Template
.Length;
53
var value =
Template
.Substring(_mark.Value, Index - _mark.Value);