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.Receive

Returns a datagram sent by a server.

[Visual Basic]
Public Function Receive( _
   ByRef EP As IPEndPoint _
) As Byte ()
[C#]
public byte[] Receive(
   ref IPEndPoint EP
);
[C++]
public: unsigned char* Receive(
   IPEndPoint** EP
) [];
[JScript]
public function Receive(
   EP : IPEndPoint
) : Byte[];

Parameters

EP
An System.Net.Sockets.IPEndPoint referencing the remote server sending the data.

Return Value

An array of 8-bit unsigned integers containing the datagram data.

See Also

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