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

◆ BeginSend() [3/3]

IAsyncResult System.Net.Sockets.UdpClient.BeginSend ( byte[] datagram,
int bytes,
string? hostname,
int port,
AsyncCallback? requestCallback,
object? state )
inline

Definition at line 230 of file UdpClient.cs.

231 {
232 return BeginSend(datagram, bytes, GetEndpoint(hostname, port), requestCallback, state);
233 }
IPEndPoint GetEndpoint(string hostname, int port)
Definition UdpClient.cs:273
IAsyncResult BeginSend(byte[] datagram, int bytes, AsyncCallback? requestCallback, object? state)
Definition UdpClient.cs:225

References System.Net.Sockets.UdpClient.BeginSend(), System.bytes, System.Net.Sockets.UdpClient.GetEndpoint(), and System.state.