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

◆ MaxResponseDrainSize

int System.Net.Http.SocketsHttpHandler.MaxResponseDrainSize
getset

Definition at line 176 of file SocketsHttpHandler.cs.

177 {
178 get
179 {
181 }
182 set
183 {
184 if (value < 0)
185 {
186 throw new ArgumentOutOfRangeException("value", value, System.SR.ArgumentOutOfRange_NeedNonNegativeNum);
187 }
189 _settings._maxResponseDrainSize = value;
190 }
191 }
readonly HttpConnectionSettings _settings
static string ArgumentOutOfRange_NeedNonNegativeNum
Definition SR.cs:126
Definition SR.cs:7