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

◆ KeepAliveInterval

TimeSpan System.Net.WebSockets.ClientWebSocketOptions.KeepAliveInterval
getset

Definition at line 124 of file ClientWebSocketOptions.cs.

125 {
126 get
127 {
128 return _keepAliveInterval;
129 }
130 set
131 {
134 {
135 throw new ArgumentOutOfRangeException("value", value, System.SR.Format(System.SR.net_WebSockets_ArgumentOutOfRange_TooSmall, Timeout.InfiniteTimeSpan.ToString()));
136 }
138 }
139 }
static string Format(string resourceFormat, object p1)
Definition SR.cs:118
static string net_WebSockets_ArgumentOutOfRange_TooSmall
Definition SR.cs:146
Definition SR.cs:7
static readonly TimeSpan InfiniteTimeSpan
Definition Timeout.cs:5