2 writes to _currentKey
Microsoft.AspNetCore.WebUtilities (2)
FormReader.cs (2)
187
_currentKey
= null;
195
if (!TryReadWord('=', KeyLengthLimit, out
_currentKey
))
6 references to _currentKey
Microsoft.AspNetCore.WebUtilities (6)
FormReader.cs (6)
130
return new KeyValuePair<string, string>(
_currentKey
, _currentValue);
163
return new KeyValuePair<string, string>(
_currentKey
, _currentValue);
193
if (
_currentKey
== null)
310
[MemberNotNullWhen(true, nameof(
_currentKey
), nameof(_currentValue))]
313
return
_currentKey
!= null && _currentValue != null;
320
accumulator.Append(
_currentKey
, _currentValue);