Fired when we have an error with the TCP/IP connection.
[Visual Basic] Public Delegate Sub LlpClient.ErrorReceivedEvent( _ ByVal sender As Object, _ ByVal Args As EventArgs, _ ByVal Description As String, _ ByVal Code As Integer _ )
[C#]
public delegate void LlpClient.ErrorReceivedEvent( objectsender, EventArgsArgs, stringDescription, intCode );
Parameters
sender
The object that triggered the event.
Args
Arguments to the event.
Description
Description of the error.
Code
Error code.
Remarks
The context of when this is received is often determined by a previous operation. The connection will always be closed once this event is received.