Fired when data has been received that is not within the header and trailer block.
[Visual Basic] Public Delegate Sub LlpClient.DataIgnoredEvent( _ ByVal sender As Object, _ ByVal Args As EventArgs, _ ByVal Data As String _ )
[C#]
public delegate void LlpClient.DataIgnoredEvent( objectsender, EventArgsArgs, stringData );
Parameters
sender
The object that triggered the event.
Args
Arguments to the event.
Data
The ignored data.
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 bad error.