Terraria v1.4.4.9
Terraria source code documentation
All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Events Macros
ReceiveState.cs
Go to the documentation of this file.
1namespace System.Net;
2
3internal sealed class ReceiveState
4{
6
7 internal int ValidThrough;
8
9 internal byte[] Buffer;
10
12
13 internal ReceiveState(CommandStream connection)
14 {
15 Connection = connection;
17 Buffer = new byte[1024];
18 ValidThrough = 0;
19 }
20}
CommandStream Connection
ResponseDescription Resp
ReceiveState(CommandStream connection)