This event is triggered when a task response is available. Its handler must be implemented by the application developer.
A task response can be an output result (in the event of success of a task) or an exception (in the event of a task failure).
NOTE: This event will be triggered by a callback thread pool within the API. Although the current thread pool has only a single thread in it, the developer should not assume that the triggering of this method will be done in a serial manner. This means that in principle,these methods can be called at any time and it is the developer's responsibility to make this call thread-safe.

C# |
public event SessionCallback..::.ResponseHandler OnResponse