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