C# 클래스 hpack.StaticTable

파일 보기 프로젝트 열기: ringostarr80/hpack

공개 메소드들

메소드 설명
GetEntry ( int index ) : HeaderField

Return the header field at the given index value.

GetIndex ( byte name ) : int

Returns the lowest index value for the given header field name in the static table. Returns -1 if the header field name is not in the static table.

GetIndex ( byte name, byte value ) : int

Returns the index value for the given header field in the static table. Returns -1 if the header field is not in the static table.

비공개 메소드들

메소드 설명
CreateMap ( ) : int>.Dictionary

create a map of header name to index value to allow quick lookup

메소드 상세

GetEntry() 공개 정적인 메소드

Return the header field at the given index value.
public static GetEntry ( int index ) : HeaderField
index int Index.
리턴 HeaderField

GetIndex() 공개 정적인 메소드

Returns the lowest index value for the given header field name in the static table. Returns -1 if the header field name is not in the static table.
public static GetIndex ( byte name ) : int
name byte Name.
리턴 int

GetIndex() 공개 정적인 메소드

Returns the index value for the given header field in the static table. Returns -1 if the header field is not in the static table.
public static GetIndex ( byte name, byte value ) : int
name byte Name.
value byte Value.
리턴 int