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

◆ CheckResponseBodyState()

void System.Net.Http.Http2Connection.Http2Stream.CheckResponseBodyState ( )
inlineprivate

Definition at line 1090 of file Http2Connection.cs.

1091 {
1092 Exception resetException = _resetException;
1093 if (resetException != null)
1094 {
1095 if (_canRetry)
1096 {
1098 }
1100 }
1101 if (_responseProtocolState == ResponseProtocolState.Aborted)
1102 {
1104 }
1105 }
static void ThrowRetry(string message, Exception innerException=null)
static void ThrowRequestAborted(Exception innerException=null)
static string net_http_request_aborted
Definition SR.cs:120
Definition SR.cs:7

References System.Net.Http.Http2Connection.Http2Stream._canRetry, System.Net.Http.Http2Connection.Http2Stream._resetException, System.Net.Http.Http2Connection.Http2Stream._responseProtocolState, System.SR.net_http_request_aborted, System.Net.Http.Http2Connection.ThrowRequestAborted(), and System.Net.Http.Http2Connection.ThrowRetry().

Referenced by System.Net.Http.Http2Connection.Http2Stream.TryEnsureHeaders(), and System.Net.Http.Http2Connection.Http2Stream.TryReadFromBuffer().