Chameleon and Iguana Plugin C# Class Libraries

LlpServer.DataIgnoredEvent Delegate

Fired when data has been received that is not within the header and trailer block envelope.

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

Parameters

sender
The object that triggered the event.
Args
Arguments to the event.
Client
The client that has sent the data.
Data
Data in string format that has been sent.

Remarks

This is for dealing with an incorrect LLP implementation. The data is provided to the user's application through this event. This allows it to be logged since this is likely to be a very significant error with the counterparty's LLP implementation.

Requirements

Namespace: iNTERFACEWARE.Chameleon

Assembly: CHM_CSHARP (in CHM_CSHARP.dll)

See Also

iNTERFACEWARE.Chameleon Namespace