Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.

SQL Anywhere 11.0.0 » QAnywhere » QAnywhere API Reference » QAnywhere .NET API reference » iAnywhere.QAnywhere.Client namespace (.NET 2.0)

 

ExceptionListener delegate

ExceptionListener delegate definition. You pass an ExceptionListener to the SetExceptionListener method.

Syntax
Visual Basic
Public Delegate Sub ExceptionListener( _
   ByVal ex As QAException, _
   ByVal msg As QAMessage _
)
C#
public delegate void ExceptionListener(
   QAException ex,
   QAMessage msg
);
Parameters
  • ex   The exception that occurred.

  • msg   The message that was received, or null if the message could not be constructed.