UdpClient.BeginSend Method (Byte[], Int32, String, Int32, AsyncCallback, Object)
Sends a datagram to a destination asynchronously. The destination is specified by the host name and port number.
Assembly: System (in System.dll)
[HostProtectionAttribute(SecurityAction.LinkDemand, ExternalThreading = true)] public IAsyncResult BeginSend( byte[] datagram, int bytes, string hostname, int port, AsyncCallback requestCallback, Object state )
Parameters
- datagram
- Type: System.Byte[]
A Byte array that contains the data to be sent.
- bytes
- Type: System.Int32
The number of bytes to send.
- hostname
- Type: System.String
The destination host.
- port
- Type: System.Int32
The destination port number.
- requestCallback
- Type: System.AsyncCallback
An AsyncCallback delegate that references the method to invoke when the operation is complete.
- state
- Type: System.Object
A user-defined object that contains information about the send operation. This object is passed to the requestCallback delegate when the operation is complete.
The asynchronous BeginSend operation must be completed by calling the EndSend method. Typically, the method is invoked by the requestCallback delegate.
This method does not block until the operation is complete. To block until the operation is complete, use one of the Send method overloads.
For detailed information about using the asynchronous programming model, see Calling Synchronous Methods Asynchronously.
Note
|
|---|
|
The HostProtectionAttribute attribute applied to this type or member has the following Resources property value: ExternalThreading. The HostProtectionAttribute does not affect desktop applications (which are typically started by double-clicking an icon, typing a command, or entering a URL in a browser). For more information, see the HostProtectionAttribute class or SQL Server Programming and Host Protection Attributes. |
The following code example uses BeginSend to asynchronously send a server request.
static void SendMessage3(string server, string message) { // create the udp socket UdpClient u = new UdpClient(); Byte [] sendBytes = Encoding.ASCII.GetBytes(message); // send the message // the destination is defined by the server name and port u.BeginSend(sendBytes, sendBytes.Length, server, listenPort, new AsyncCallback(SendCallback), u); // Do some work while we wait for the send to complete. For // this example, we'll just sleep while (!messageSent) { Thread.Sleep(100); } }
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.
Note