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

◆ KeepAlivePingDelay

TimeSpan System.Net.Http.SocketsHttpHandler.KeepAlivePingDelay
getset

Definition at line 327 of file SocketsHttpHandler.cs.

328 {
329 get
330 {
332 }
333 set
334 {
335 if (value.Ticks < 10000000 && value != Timeout.InfiniteTimeSpan)
336 {
337 throw new ArgumentOutOfRangeException("value", value, System.SR.Format(System.SR.net_http_value_must_be_greater_than_or_equal, value, TimeSpan.FromSeconds(1.0)));
338 }
340 _settings._keepAlivePingDelay = value;
341 }
342 }
readonly HttpConnectionSettings _settings
static string net_http_value_must_be_greater_than_or_equal
Definition SR.cs:90
static string Format(string resourceFormat, object p1)
Definition SR.cs:118
Definition SR.cs:7
static readonly TimeSpan InfiniteTimeSpan
Definition Timeout.cs:5