Notes
- Last UpdatedMay 26, 2020
- 1 minute read
For each initialize, connect, read and disconnect request from AVEVA Mobile Operator application, the response must be sent back. To set data and send the response the below method must be called on the trigger object sent for that request as shown below:
void SetParsedData(bool success, object data, object customData);
void Send();
For example, for an Initialize request, the response must be set and sent back on the initializeTrigger object:
initializeTrigger.SetParsedData(true, string.Empty, customData);
initializeTrigger.Send();
Call the SetParsedData method, and then the Send method while sending response back to AVEVA Mobile Operator application. For more details refer section IResponseBroker.