Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ NoDelay

bool System.Net.Sockets.TcpClient.NoDelay
getset

Definition at line 131 of file TcpClient.cs.

132 {
133 get
134 {
135 return Client.NoDelay;
136 }
137 set
138 {
139 Client.NoDelay = value;
140 }
141 }