This topic has not yet been rated - Rate this topic

UdpAnySourceMulticastClient.EndReceiveFromGroup Method

May 02, 2013

Completes the asynchronous operation of receiving a packet from the joined multicast group and provides the information received.

Namespace:  System.Net.Sockets
Assembly:  System.Net (in System.Net.dll)
public int EndReceiveFromGroup(
	IAsyncResult result,
	out IPEndPoint source
)

Parameters

result
Type: System.IAsyncResult
The result of the asynchronous receive operation.
source
Type: System.Net.IPEndPoint %
The source endpoint where the packet was received from.

Return Value

Type: System.Int32
The length, in bytes, of the message stored in the buffer parameter passed to the BeginReceiveFromGroup method.
ExceptionCondition
ArgumentNullException

result is null.

InvalidOperationException

The multicast group has not yet been joined.

ObjectDisposedException

The UdpAnySourceMulticastClient has been disposed.

SocketException

An error occurred when attempting to access the socket. See the Remarks section for more information.

The EndReceiveFromGroup method completes an asynchronous operation to receive a packet from a multicast group.

If there is a socket failure while performing the receive operation, a SocketException is thrown. The error received is specified as a member of the System.Net.Sockets.SocketError enumeration.

Windows Phone OS

Supported in: 8.0, 7.1

Windows Phone

Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.