public method O2GSession.sendRequest

Brief

Sends a request to the trade server.

Declaration
C#
void  sendRequest (O2GRequest request)

Parameters
request

The request object.

To create a request, use the O2GRequestFactory interface.

To monitor the request results, please implement the IO2GResponseListener interface and subscribe the implementation using the subscribeResponse method.

Another way to get the request results is to subscribe to session's RequestCompleted event and to extract a O2GResponse from RequestCompletedEventArgs.

Declared in O2GSession

back