'Declaration
Event Completed As EventHandler(Of IMessageSocketAsyncEventArgs)
'Usage
Dim instance As IMessageSocketAsyncEventArgs Dim handler As EventHandler(Of IMessageSocketAsyncEventArgs) AddHandler instance.Completed, handler
event EventHandler<IMessageSocketAsyncEventArgs> Completed
event EventHandler<IMessageSocketAsyncEventArgs^>^ Completed
Event Data
The event handler receives an argument of type IMessageSocketAsyncEventArgs containing data related to this event. The following IMessageSocketAsyncEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Buffer | Gets the data buffer to use with an asynchronous socket method. |
BufferList | Gets or sets an array of data buffers to use with an asynchronous socket method. |
BytesTransferred | Gets the number of bytes transferred in the socket operation. |
IsSocketError | Gets the result of the asynchronous socket operation. |
SocketErrorString | Gets the SocketError string of the asynchronous socket operation. |
UserToken | Gets or sets a user or application object associated with this asynchronous socket operation. |
Requirements
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
See Also