SetListener method

Sets a listener for the results of a given web service request.

Syntax
Visual Basic
Overloads Public Sub SetListener( _
   ByVal requestID As String, _
   ByVal listener As iAnywhere.QAnywhere.WS.WSListener _
)
C#
public void SetListener(
   string  requestID,
   iAnywhere.QAnywhere.WS.WSListener listener
);
Parameters
  • requestID   The ID of the web service request to which to listen for results.

  • listener   The listener object that gets called when the result of the given web service request is available.

Remarks

Listeners are typically used to get results of the asyncXYZ methods of the service.

To remove a listener, call SetListener with null as the listener.

Note: This method replaces the listener set by any previous call to SetListener.