OnDataArrival
This is a Socket Object event that occurs when data arrives and is used to process incoming data.
Group: Socket Object
Example:
Dim WithEvents oSocket As Socket ' Module level Dim
Private Sub oSocket_OnDataArrival(ByVal bytesTotal As Long)
On Error Resume Next
End Sub