1 write to _stringLength
Microsoft.AspNetCore.Server.Kestrel.Core (1)
src\Shared\runtime\Http3\QPack\QPackDecoder.cs (1)
624_stringLength = length;
11 references to _stringLength
Microsoft.AspNetCore.Server.Kestrel.Core (11)
src\Shared\runtime\Http3\QPack\QPackDecoder.cs (11)
287int count = Math.Min(_stringLength - _stringIndex, data.Length - currentIndex); 292if (count == _stringLength && !_huffman) 296_headerNameLength = _stringLength; 315if (_stringIndex == _stringLength) 373int count = Math.Min(_stringLength - _stringIndex, data.Length - currentIndex); 377if (count == _stringLength && !_huffman) 399if (_stringIndex == _stringLength) 633EnsureStringCapacity(ref dst, _stringLength, existingLength: 0); 637return Huffman.Decode(new ReadOnlySpan<byte>(_stringOctets, 0, _stringLength), ref dst); 641Buffer.BlockCopy(_stringOctets, 0, dst, 0, _stringLength); 642return _stringLength;