UdpClient.EndSend Method
Ends a pending asynchronous send.
Assembly: System (in System.dll)
Parameters
- asyncResult
- Type: System.IAsyncResult
An IAsyncResult object returned by a call to BeginSend.
| Exception | Condition |
|---|---|
| ArgumentNullException |
asyncResult is null. |
| ArgumentException |
asyncResult was not returned by a call to the BeginSend method. |
| InvalidOperationException |
EndSend was previously called for the asynchronous read. |
| SocketException |
An error occurred when attempting to access the underlying socket. See the Remarks section for more information. |
| ObjectDisposedException |
The underlying Socket has been closed. |
This method blocks until the operation is complete.
To perform this operation synchronously, use the Send method.
The following code example uses BeginSend to complete an asynchronous send of a server request.
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.