QuickBooks Integrator V6 - Online Help
QuickBooks Integrator V6
Questions / Feedback?

Request Event

Fired when a client sends a request to the component.

Syntax

[VB.NET]
Public Event OnRequest As OnRequestHandler
[C#]
public event OnRequestHandler OnRequest;

public delegate void OnRequestHandler(object sender, QbconnectorRequestEventArgs e);

class QbconnectorRequestEventArgs : EventArgs {
  string ConnectionId {get;}
  int UserIndex {get;}
  string Request {get;}
}

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 AuthorizedUsers collection. Request is the QBXML Request sent from the client.

A UserIndex of -1 means that no matching credentials were found in the AuthorizedUsers collection.

 
 
Copyright (c) 2017 /n software inc. - All rights reserved.
Build 6.0.6240.0