3 writes to _headerNameRange
IIS.LongTests (3)
src\Shared\runtime\Http2\Hpack\HPackDecoder.cs (3)
200
_headerNameRange
= null;
433
_headerNameRange
= (start: currentIndex, count);
534
_headerNameRange
= null;
6 references to _headerNameRange
IIS.LongTests (6)
src\Shared\runtime\Http2\Hpack\HPackDecoder.cs (6)
193
if (
_headerNameRange
!= null)
198
ReadOnlySpan<byte> headerBytes = data.Slice(
_headerNameRange
.GetValueOrDefault().start,
_headerNameRange
.GetValueOrDefault().length);
521
ReadOnlySpan<byte> headerNameSpan =
_headerNameRange
== null
523
: data.Slice(
_headerNameRange
.GetValueOrDefault().start,
_headerNameRange
.GetValueOrDefault().length);