|
Callback for a Requestor for the results of an asynchronous operation.
This callback may be NULL to ignore notification of results.
- Parameters
-
self | The callback object. This will never be NULL. |
operation | The original request operation. This will never be NULL. |
providerInfo | The DOFProviderInfo associated with the result or except. This will never be NULL. |
resultCount | The number of values in the result array. |
result | An array of DOFValue elements, representing the output parameters of the Method used in the Invoke Operation. Must be ignored if except is non-NULL. This will never be NULL if resultCount is not 0. This may contain NULL values for parameters that are "NULL" (from nullable types). |
except | An exception received from a Provider. If NULL, no exception occurred (the Invoke was successful) and result is valid. |
|