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