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

◆ InitialHttp2StreamWindowSize

int System.Net.Http.SocketsHttpHandler.InitialHttp2StreamWindowSize
getset

Definition at line 309 of file SocketsHttpHandler.cs.

310 {
311 get
312 {
314 }
315 set
316 {
317 if (value < 65535 || value > GlobalHttpSettings.SocketsHttpHandler.MaxHttp2StreamWindowSize)
318 {
319 string message = System.SR.Format(System.SR.net_http_http2_invalidinitialstreamwindowsize, 65535, GlobalHttpSettings.SocketsHttpHandler.MaxHttp2StreamWindowSize);
320 throw new ArgumentOutOfRangeException("InitialHttp2StreamWindowSize", message);
321 }
323 _settings._initialHttp2StreamWindowSize = value;
324 }
325 }
readonly HttpConnectionSettings _settings
static string Format(string resourceFormat, object p1)
Definition SR.cs:118
static string net_http_http2_invalidinitialstreamwindowsize
Definition SR.cs:152
Definition SR.cs:7