Chameleon and Iguana Plugin C# Class Libraries

LlpClient.ErrorReceivedEvent Delegate

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(
   object sender,
   EventArgs Args,
   string Description,
   int Code
);

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.

Requirements

Namespace: iNTERFACEWARE.Chameleon

Assembly: CHM_CSHARP (in CHM_CSHARP.dll)

See Also

iNTERFACEWARE.Chameleon Namespace