Méthode | Description | |
---|---|---|
EncodeHeader ( |
||
EncodeHeader ( |
Encode the header field into the header block.
|
|
EncodeHeader ( |
||
EncodeHeader ( |
||
Encoder ( int maxHeaderTableSize ) : System |
Initializes a new instance of the hpack.Encoder class.
|
|
Encoder ( int maxHeaderTableSize, bool useIndexing, bool forceHuffmanOn, bool forceHuffmanOff ) : System |
Initializes a new instance of the hpack.Encoder class. for testing only.
|
|
GetHeaderField ( int index ) : HeaderField |
Return the header field at the given index. Exposed for testing.
|
|
GetMaxHeaderTableSize ( ) : int |
Return the maximum table size.
|
|
GetSize ( ) : int |
Return the size of the dynamic table. Exposed for testing.
|
|
Length ( ) : int |
Return the number of header fields in the dynamic table. Exposed for testing.
|
|
SetMaxHeaderTableSize ( |
Set the maximum table size.
|
Méthode | Description | |
---|---|---|
Add ( byte name, byte value ) : void |
Add the header field to the dynamic table. Entries are evicted from the dynamic table until the size of the table and the new header field is less than the table's capacity. If the size of the new entry is larger than the table's capacity, the dynamic table will be cleared.
|
|
Clear ( ) : void |
Remove all entries from the dynamic table.
|
|
EncodeInteger ( |
Encode integer according to Section 5.1.
|
|
EncodeLiteral ( |
Encode literal header field according to Section 6.2.
|
|
EncodeStringLiteral ( |
Encode string literal according to Section 5.2.
|
|
EnsureCapacity ( int headerSize ) : void |
Ensure that the dynamic table has enough room to hold 'headerSize' more bytes. Removes the oldest entry from the dynamic table until sufficient space is available.
|
|
GetEntry ( byte name, byte value ) : HeaderEntry |
Returns the header entry with the lowest index value for the header field. Returns null if header field is not in the dynamic table.
|
|
GetIndex ( byte name ) : int |
Returns the lowest index value for the header field name in the dynamic table. Returns -1 if the header field name is not in the dynamic table.
|
|
GetIndex ( int index ) : int |
Compute the index into the dynamic table given the index in the header entry.
|
|
GetNameIndex ( byte name ) : int | ||
Hash ( byte name ) : int |
Returns the hash code for the given header field name.
|
|
Index ( int h ) : int |
Returns the index into the hash table for the hash code h.
|
|
Init ( int maxHeaderTableSize, bool useIndexing, bool forceHuffmanOn, bool forceHuffmanOff ) : void | ||
Remove ( ) : HeaderField |
Remove and return the oldest header field from the dynamic table.
|
public EncodeHeader ( |
||
output | ||
name | byte | |
value | byte | |
Résultat | void |
public EncodeHeader ( |
||
output | Output. | |
name | byte | Name. |
value | byte | Value. |
sensitive | bool | If set to |
Résultat | void |
public EncodeHeader ( |
||
output | ||
name | string | |
value | string | |
Résultat | void |
public EncodeHeader ( |
||
output | ||
name | string | |
value | string | |
sensitive | bool | |
Résultat | void |
public Encoder ( int maxHeaderTableSize ) : System | ||
maxHeaderTableSize | int | Max header table size. |
Résultat | System |
public Encoder ( int maxHeaderTableSize, bool useIndexing, bool forceHuffmanOn, bool forceHuffmanOff ) : System | ||
maxHeaderTableSize | int | Max header table size. |
useIndexing | bool | If set to |
forceHuffmanOn | bool | If set to |
forceHuffmanOff | bool | If set to |
Résultat | System |
public GetHeaderField ( int index ) : HeaderField | ||
index | int | Index. |
Résultat | HeaderField |
public SetMaxHeaderTableSize ( |
||
output | Output. | |
maxHeaderTableSize | int | Max header table size. |
Résultat | void |