Socket::EndReceiveMessageFrom Method
Ends a pending asynchronous read from a specific endpoint. This method also reveals more information about the packet than EndReceiveFrom.
Assembly: System (in System.dll)
public: int EndReceiveMessageFrom( IAsyncResult^ asyncResult, SocketFlags% socketFlags, EndPoint^% endPoint, [OutAttribute] IPPacketInformation% ipPacketInformation )
Parameters
- asyncResult
- Type: System::IAsyncResult
An IAsyncResult that stores state information and any user defined data for this asynchronous operation.
- socketFlags
- Type: System.Net.Sockets::SocketFlags%
A bitwise combination of the SocketFlags values for the received packet.
- endPoint
- Type: System.Net::EndPoint%
The source EndPoint.
- ipPacketInformation
- Type: System.Net.Sockets::IPPacketInformation%
The IPAddress and interface of the received packet.
Return Value
Type: System::Int32If successful, the number of bytes received. If unsuccessful, returns 0.
| Exception | Condition |
|---|---|
| ArgumentNullException | asyncResult is nullptr -or- endPoint is nullptr. |
| ArgumentException | asyncResult was not returned by a call to the BeginReceiveMessageFrom method. |
| InvalidOperationException | EndReceiveMessageFrom was previously called for the asynchronous read. |
| SocketException | An error occurred when attempting to access the socket. See the Remarks section for more information. |
| ObjectDisposedException | The Socket has been closed. |
If the operation has not completed, this method blocks until it does.
To perform this operation synchronously, use the ReceiveMessageFrom method.
Examine ipPacketInformation if you need to know if the datagram was sent using a unicast, multicast, or broadcast address.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.