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

◆ Send() [7/11]

int System.Net.Sockets.Socket.Send ( IList< ArraySegment< byte > > buffers,
SocketFlags socketFlags )
inline

Definition at line 1465 of file Socket.cs.

1466 {
1467 SocketError errorCode;
1468 int result = Send(buffers, socketFlags, out errorCode);
1469 if (errorCode != 0)
1470 {
1471 throw new SocketException((int)errorCode);
1472 }
1473 return result;
1474 }

References System.buffers, and System.Net.Sockets.Send.