NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

UDPClient.Send

Sends a UDP datagram to a remote host.

Overload List

Sends a UDP datagram to the host at the remote end point.

[Visual Basic] Overloads Public Function Send(Byte(), Integer, IPEndPoint) As Integer
[C#] public int Send(byte[], int, IPEndPoint);
[C++] public: int Send(unsigned char*[], int, IPEndPoint);
[JScript] public function Send(Byte[], int, IPEndPoint) : int;

Sends a UDP datagram to the specified port on the specified remote host.

[Visual Basic] Overloads Public Function Send(Byte(), Integer, String, Integer) As Integer
[C#] public int Send(byte[], int, String, int);
[C++] public: int Send(unsigned char*[], int, String, int);
[JScript] public function Send(Byte[], int, String, int) : int;

Sends a UDP datagram to a remote host.

[Visual Basic] Overloads Public Function Send(Byte(), Integer) As Integer
[C#] public int Send(byte[], int);
[C++] public: int Send(unsigned char*[], int);
[JScript] public function Send(Byte[], int) : int;

See Also

UDPClient Class | UDPClient Members | System.Net.Sockets Namespace