Table of Contents

Class CodecSetting

Namespace
Fluxzy.Clients.H2.Encoder
Assembly
Fluxzy.Core.dll
public class CodecSetting
Inheritance
CodecSetting
Inherited Members

Properties

EncodedHeaders

Header name in this list will be registered to the dynamic table when encoding.

public HashSet<ReadOnlyMemory<char>> EncodedHeaders { get; }

Property Value

HashSet<ReadOnlyMemory<char>>

MaxHeaderLineLength

The maximum header line (request line included)

public int MaxHeaderLineLength { get; set; }

Property Value

int

MaxLengthUncompressedString

When encoding, Huffman is applied only if if string length exceed this value.

public int MaxLengthUncompressedString { get; set; }

Property Value

int

MaxStackAllocationLength

Max length for a stackalloc, beyond this value heap allocation is used

public int MaxStackAllocationLength { get; set; }

Property Value

int