Class CodecSetting
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
MaxHeaderLineLength
The maximum header line (request line included)
public int MaxHeaderLineLength { get; set; }
Property Value
MaxLengthUncompressedString
When encoding, Huffman is applied only if if string length exceed this value.
public int MaxLengthUncompressedString { get; set; }
Property Value
MaxStackAllocationLength
Max length for a stackalloc, beyond this value heap allocation is used
public int MaxStackAllocationLength { get; set; }