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