Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
WebSocketContext.cs
Go to the documentation of this file.
4
6
7public abstract class WebSocketContext
8{
9 public abstract Uri RequestUri { get; }
10
11 public abstract NameValueCollection Headers { get; }
12
13 public abstract string Origin { get; }
14
16
17 public abstract string SecWebSocketVersion { get; }
18
19 public abstract string SecWebSocketKey { get; }
20
21 public abstract CookieCollection CookieCollection { get; }
22
23 public abstract IPrincipal? User { get; }
24
25 public abstract bool IsAuthenticated { get; }
26
27 public abstract bool IsLocal { get; }
28
29 public abstract bool IsSecureConnection { get; }
30
31 public abstract WebSocket WebSocket { get; }
32}