3 references to GetLength
Microsoft.AspNetCore.Shared.Tests (3)
src\Shared\Hpack\DynamicHPackEncoder.cs (1)
93var headerLength = HeaderField.GetLength(name.Length, valueEncoding?.GetByteCount(value) ?? value.Length);
src\Shared\runtime\Http2\Hpack\DynamicTable.cs (1)
58int entryLength = HeaderField.GetLength(name.Length, value.Length);
src\Shared\runtime\Http2\Hpack\HeaderField.cs (1)
37public int Length => GetLength(Name.Length, Value.Length);