C# 클래스 hpack.Encoder.HeaderEntry

A linked hash map HeaderField entry.
상속: HeaderField
파일 보기 프로젝트 열기: ringostarr80/hpack

공개 메소드들

메소드 설명
AddBefore ( HeaderEntry existingEntry ) : void

Inserts this entry before the specified existing entry in the list.

HeaderEntry ( int hash, byte name, byte value, int index, HeaderEntry next ) : System

Creates new entry.

Remove ( ) : void

Removes this entry from the linked list.

메소드 상세

AddBefore() 공개 메소드

Inserts this entry before the specified existing entry in the list.
public AddBefore ( HeaderEntry existingEntry ) : void
existingEntry HeaderEntry Existing entry.
리턴 void

HeaderEntry() 공개 메소드

Creates new entry.
public HeaderEntry ( int hash, byte name, byte value, int index, HeaderEntry next ) : System
hash int Hash.
name byte Name.
value byte Value.
index int Index.
next HeaderEntry Next.
리턴 System

Remove() 공개 메소드

Removes this entry from the linked list.
public Remove ( ) : void
리턴 void