Socket.SendAsync Method
Microsoft Silverlight will reach end of support after October 2021. Learn more.
Sends data asynchronously to a connected Socket object.
Namespace: System.Net.Sockets
Assembly: System.Net (in System.Net.dll)
Syntax
'Declaration
Public Function SendAsync ( _
e As SocketAsyncEventArgs _
) As Boolean
public bool SendAsync(
SocketAsyncEventArgs e
)
Parameters
- e
Type: System.Net.Sockets.SocketAsyncEventArgs
The System.Net.Sockets.SocketAsyncEventArgs object to use for this asynchronous socket operation.
Return Value
Type: System.Boolean
Returns true if the I/O operation is pending. The SocketAsyncEventArgs.Completed event on the System.Net.Sockets.SocketAsyncEventArgs object passed in the e parameter will be raised upon completion of the operation.
Returns false if the I/O operation completed synchronously. In this case, The SocketAsyncEventArgs.Completed event on the System.Net.Sockets.SocketAsyncEventArgs object passed in the e parameter will not be raised. The System.Net.Sockets.SocketAsyncEventArgs object passed in the e parameter may be examined immediately after the method call returns to retrieve the result of the operation.
Exceptions
Exception | Condition |
---|---|
ArgumentException | The SocketAsyncEventArgs.Buffer or SocketAsyncEventArgs.BufferList properties on the System.Net.Sockets.SocketAsyncEventArgs object passed in the e parameter must reference valid buffers. One or the other of these properties may be set, but not both at the same time. |
ArgumentOutOfRangeException | The value for an internal socket option associated with the Socket was incorrect. |
InvalidOperationException | A socket operation was already in progress using the System.Net.Sockets.SocketAsyncEventArgs object passed in the e parameter. |
NotSupportedException | Windows XP or later is required for this method. |
ObjectDisposedException | The Socket has been closed. |
SocketException | The Socket is not yet connected. |
Remarks
The SendAsync method is used to write outgoing data from one or more buffers on a connection-oriented socket. The SendAsync method starts an asynchronous send operation to the remote host established in the ConnectAsync method.
To be notified of completion, you must create a callback method that implements the EventHandler<SocketAsyncEventArgs> delegate and attach the callback to the SocketAsyncEventArgs.Completed event.
The following properties and events on the System.Net.Sockets.SocketAsyncEventArgs object are required to successfully call this method:
SocketAsyncEventArgs.Buffer or SocketAsyncEventArgs.BufferList
SocketAsyncEventArgs.Count if SocketAsyncEventArgs.Buffer is set
SocketAsyncEventArgs.Offset if SocketAsyncEventArgs.Buffer is set
The caller may set the SocketAsyncEventArgs.UserToken property to any user state object desired before calling the SendAsync method, so that the information will be retrievable in the callback method. If the callback needs more information than a single object, a small class can be created to hold the other required state information as members.
A connection to the remote host using the Socket must be established before any data can be sent by the SendAsync method.
The
SendAsync method will throw an exception if you do not first call the ConnectAsync method to establish a connection.
Calling the SendAsync method gives you the ability to send data within a separate execution thread.
Note that the successful completion of the SendAsync method does not indicate that the data was successfully delivered.
Note: |
---|
If you receive a SocketException when calling this method, use the SocketException.ErrorCode property to obtain the specific error code. After you have obtained this code, refer to the Windows Sockets Error Codes documentation in the MSDN library for a detailed description of the error. |
Version Information
Silverlight
Supported in: 5, 4, 3
Silverlight for Windows Phone
Supported in: Windows Phone OS 7.1
Platforms
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.
See Also