Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ ParseHeaderValueLengthContinue()

void System.Net.Http.HPack.HPackDecoder.ParseHeaderValueLengthContinue ( ReadOnlySpan< byte > data,
ref int currentIndex,
IHttpHeadersHandler handler )
inlineprivate

Definition at line 179 of file HPackDecoder.cs.

180 {
181 if (TryDecodeInteger(data, ref currentIndex, out var result))
182 {
183 OnStringLength(result, State.HeaderValue);
184 ParseHeaderValue(data, ref currentIndex, handler);
185 }
186 }
bool TryDecodeInteger(ReadOnlySpan< byte > data, ref int currentIndex, out int result)
void OnStringLength(int length, State nextState)
void ParseHeaderValue(ReadOnlySpan< byte > data, ref int currentIndex, IHttpHeadersHandler handler)

References System.Net.Http.HPack.HPackDecoder.OnStringLength(), System.Net.Http.HPack.HPackDecoder.ParseHeaderValue(), and System.Net.Http.HPack.HPackDecoder.TryDecodeInteger().

Referenced by System.Net.Http.HPack.HPackDecoder.DecodeInternal(), and System.Net.Http.HPack.HPackDecoder.ParseHeaderValueLength().