41 references to Value
Microsoft.AspNetCore.App.Analyzers (41)
Infrastructure\RoutePattern\RoutePatternLexer.cs (23)
48
=> ch.
Value
switch
78
Text[position + i].
Value
!= val[i])
103
if (ch.
Value
== '/')
108
else if (ch.
Value
== '{' && IsUnescapedChar(ref Position, '{'))
113
else if (ch.
Value
== '}' && IsUnescapedChar(ref Position, '}'))
118
else if (ch.
Value
== '?')
122
else if (ch.
Value
== '[' && IsUnescapedChar(ref Position, '[') && RoutePatternOptions.SupportTokenReplacement)
185
if (ch.
Value
is ':' or '=' && start != Position)
197
else if (ch.
Value
== '}' && IsUnescapedChar(ref Position, '}'))
201
else if (ch.
Value
== '{' && IsUnescapedChar(ref Position, '{'))
234
ch.
Value
switch
247
return ch.
Value
== '?' && IsAt("?}") && !IsAt("?}}");
262
if (ch.
Value
is ':' or '=' or '?')
266
else if (ch.
Value
== '{' && IsUnescapedChar(ref Position, '{'))
276
if (ch.
Value
== '(')
303
if (Text[position].
Value
!= c)
308
if (position + 1 >= Text.Length || Text[position + 1].
Value
!= c)
320
while (currentPosition < Text.Length && Text[currentPosition].
Value
== c)
360
else if (ch.
Value
== '{' && IsUnescapedChar(ref Position, '{'))
364
else if (ch.
Value
== ')')
404
if (ch.
Value
== '[' && IsUnescapedChar(ref Position, '['))
446
if (ch.
Value
is '}')
482
if (ch.
Value
== ')')
Infrastructure\VirtualChars\RuneExtensions.cs (1)
11
=> TryGetEscapeCharacter(ch.
Value
, out escapedChar);
Infrastructure\VirtualChars\VirtualChar.cs (16)
112
=> ch1.
Value
== ch2;
165
=>
Value
- other.
Value
;
168
=> ch1.
Value
< ch2.
Value
;
171
=> ch1.
Value
<= ch2.
Value
;
174
=> ch1.
Value
> ch2.
Value
;
177
=> ch1.
Value
>= ch2.
Value
;
180
=>
Value
- other;
183
=> ch1.
Value
< ch2;
186
=> ch1.
Value
<= ch2;
189
=> ch1.
Value
> ch2;
192
=> ch1.
Value
>= ch2;
RouteEmbeddedLanguage\RoutePatternBraceMatcher.cs (1)
40
return ch.
Value
switch