UdpSingleSourceMulticastClient::EndSendToSource Method (IAsyncResult^)
.NET Framework (current version)
Note: This API is now obsolete.
Namespace:
System.Net.Sockets
Assembly: System.Net (in System.Net.dll)
Return to top
Completes the operation of sending a unicast packet to a single source.
Assembly: System.Net (in System.Net.dll)
public: [ObsoleteAttribute("This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.", true)] void EndSendToSource( IAsyncResult^ result )
Parameters
- result
-
Type:
System::IAsyncResult^
The result of the asynchronous send operation.
| Exception | Condition |
|---|---|
| ArgumentNullException | result is a null reference (Nothing in Visual Basic). |
| InvalidOperationException | The multicast group has not yet been joined. |
| ObjectDisposedException | The UdpSingleSourceMulticastClient has been disposed. |
| SocketException | An error occurred when attempting to access the socket. See the Remarks section for more information. |
The EndSendToSource method completes an asynchronous operation to send a packet to single source previously specified.
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 SocketError enumeration.
.NET Framework
Available since 4.5
Silverlight
Available since 4.0
Windows Phone Silverlight
Available since 7.1
Available since 4.5
Silverlight
Available since 4.0
Windows Phone Silverlight
Available since 7.1
Show: