Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
WebSocketDeflateOptions.cs
Go to the documentation of this file.
2
3public sealed class WebSocketDeflateOptions
4{
5 private int _clientMaxWindowBits = 15;
6
7 private int _serverMaxWindowBits = 15;
8
10 {
11 get
12 {
14 }
15 set
16 {
17 if (value < 9 || value > 15)
18 {
20 }
22 }
23 }
24
25 public bool ClientContextTakeover { get; set; } = true;
26
27
29 {
30 get
31 {
33 }
34 set
35 {
36 if (value < 9 || value > 15)
37 {
39 }
41 }
42 }
43
44 public bool ServerContextTakeover { get; set; } = true;
45
46}
static string net_WebSockets_ArgumentOutOfRange
Definition SR.cs:64
static string Format(string resourceFormat, object p1)
Definition SR.cs:118
Definition SR.cs:7