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

◆ Send() [2/11]

int System.Net.Sockets.Socket.Send ( byte[] buffer,
int offset,
int size,
SocketFlags socketFlags )
inline

Definition at line 1514 of file Socket.cs.

1515 {
1516 SocketError errorCode;
1517 int result = Send(buffer, offset, size, socketFlags, out errorCode);
1518 if (errorCode != 0)
1519 {
1520 throw new SocketException((int)errorCode);
1521 }
1522 return result;
1523 }

References System.buffer, System.offset, and System.Net.Sockets.Send.