Terraria v1.4.4.9
Terraria source code documentation
All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Events Macros

◆ ClientMaxWindowBits

int System.Net.WebSockets.WebSocketDeflateOptions.ClientMaxWindowBits
getset

Definition at line 9 of file WebSocketDeflateOptions.cs.

10 {
11 get
12 {
14 }
15 set
16 {
17 if (value < 9 || value > 15)
18 {
19 throw new ArgumentOutOfRangeException("ClientMaxWindowBits", value, System.SR.Format(System.SR.net_WebSockets_ArgumentOutOfRange, 9, 15));
20 }
22 }
23 }
static string net_WebSockets_ArgumentOutOfRange
Definition SR.cs:64
static string Format(string resourceFormat, object p1)
Definition SR.cs:118
Definition SR.cs:7

Referenced by System.Net.WebSockets.ManagedWebSocket.ManagedWebSocket().