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

◆ Send() [1/6]

int System.Net.Sockets.UdpClient.Send ( byte[] dgram,
int bytes )
inline

Definition at line 699 of file UdpClient.cs.

700 {
702 if (dgram == null)
703 {
704 throw new ArgumentNullException("dgram");
705 }
706 if (!_active)
707 {
709 }
710 return Client.Send(dgram, 0, bytes, SocketFlags.None);
711 }
static string net_notconnected
Definition SR.cs:24
Definition SR.cs:7

References System.Net.Sockets.UdpClient._active, System.bytes, System.SR.net_notconnected, and System.Net.Sockets.UdpClient.ThrowIfDisposed().