1 write to _value
Microsoft.AspNetCore.Rewrite (1)
UrlMatches\StringMatch.cs (1)
16
_value
= value;
5 references to _value
Microsoft.AspNetCore.Rewrite (5)
UrlMatches\StringMatch.cs (5)
31
return string.Compare(input,
_value
, _stringComparison) == 0 ? MatchResults.EmptySuccess : MatchResults.EmptyFailure;
33
return string.Compare(input,
_value
, _stringComparison) > 0 ? MatchResults.EmptySuccess : MatchResults.EmptyFailure;
35
return string.Compare(input,
_value
, _stringComparison) >= 0 ? MatchResults.EmptySuccess : MatchResults.EmptyFailure;
37
return string.Compare(input,
_value
, _stringComparison) < 0 ? MatchResults.EmptySuccess : MatchResults.EmptyFailure;
39
return string.Compare(input,
_value
, _stringComparison) <= 0 ? MatchResults.EmptySuccess : MatchResults.EmptyFailure;