Chameleon and Iguana Plugin C# Class Libraries

LlpServer.ClientErrorReceivedEvent Delegate

Fired when a networking error occurs with a specific client connection.

[Visual Basic]
Public Delegate Sub LlpServer.ClientErrorReceivedEvent( _
   ByVal sender As Object, _
   ByVal Args As EventArgs, _
   ByVal Client As LlpConnection, _
   ByVal ErrorMessage As String, _
   ByVal ErrorCode As Integer _
)
[C#]
public delegate void LlpServer.ClientErrorReceivedEvent(
   object sender,
   EventArgs Args,
   LlpConnection Client,
   string ErrorMessage,
   int ErrorCode
);

Parameters

sender
The object that triggered the event.
Args
Arguments to the event.
Client
The client that had an error.
ErrorMessage
The description of the error.
ErrorCode
The code that describes the error.

Remarks

The context on when this is received is often determined by a previous operation, although that is not necessary. The connection will always be closed once this event is received so there is no need to close the connection within the application code.

Requirements

Namespace: iNTERFACEWARE.Chameleon

Assembly: CHM_CSHARP (in CHM_CSHARP.dll)

See Also

iNTERFACEWARE.Chameleon Namespace