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

◆ ContinueTimeout

int System.Net.HttpWebRequest.ContinueTimeout
getset

Definition at line 252 of file HttpWebRequest.cs.

253 {
254 get
255 {
256 return _continueTimeout;
257 }
258 set
259 {
261 {
263 }
264 if (value < 0 && value != -1)
265 {
266 throw new ArgumentOutOfRangeException("value", System.SR.net_io_timeout_use_ge_zero);
267 }
269 }
270 }
static string net_reqsubmitted
Definition SR.cs:16
static string net_io_timeout_use_ge_zero
Definition SR.cs:18
Definition SR.cs:7