Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
WebSocketCreationOptions.cs
Go to the documentation of this file.
2
4
5public sealed class WebSocketCreationOptions
6{
7 private string _subProtocol;
8
10
11 public bool IsServer { get; set; }
12
13 public string? SubProtocol
14 {
15 get
16 {
17 return _subProtocol;
18 }
19 set
20 {
21 if (value != null)
22 {
24 }
26 }
27 }
28
30 {
31 get
32 {
33 return _keepAliveInterval;
34 }
35 set
36 {
38 {
40 }
42 }
43 }
44
46}
static void ValidateSubprotocol(string subProtocol)
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
static readonly TimeSpan Zero
Definition TimeSpan.cs:21