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

◆ WSASendTo() [3/3]

static unsafe SocketError Interop.Winsock.WSASendTo ( SafeHandle socketHandle,
WSABuffer[] buffers,
int bufferCount,
out int bytesTransferred,
SocketFlags socketFlags,
IntPtr socketAddress,
int socketAddressSize,
NativeOverlapped * overlapped,
IntPtr completionRoutine )
inlinestaticpackage

Definition at line 323 of file Interop.cs.

324 {
325 fixed (WSABuffer* buffers2 = &buffers[0])
326 {
327 return WSASendTo(socketHandle, buffers2, bufferCount, out bytesTransferred, socketFlags, socketAddress, socketAddressSize, overlapped, completionRoutine);
328 }
329 }
static unsafe SocketError WSASendTo(SafeHandle socketHandle, WSABuffer *buffers, int bufferCount, out int bytesTransferred, SocketFlags socketFlags, IntPtr socketAddress, int socketAddressSize, NativeOverlapped *overlapped, IntPtr completionRoutine)

References System.buffers, and Interop.Winsock.WSASendTo().