Request Event
Fired when a client sends a request to the component.
Syntax
typedef void __fastcall (__closure *TiqbQBConnectorRequestEvent)(System::TObject* Sender, TiqbQBConnectorRequestEventParams *e);__property TiqbQBConnectorRequestEvent OnRequest = {read=FOnRequest, write=FOnRequest};
typedef struct {
int ConnectionId;
int UserIndex;
String Request;
} TiqbQBConnectorRequestEventParams;
Remarks
This event will fire with the raw XML data received from the client, which is to be processed by QuickBooks.
The ConnectionId indicates which client connection this Request event is firing for. The UserIndex is the index of the user in the AuthorizedUser array property. Request is the QBXML Request sent from the client.
A UserIndex of -1 means that no matching credentials were found in the AuthorizedUsers collection.