AsyncResult.GetResult Method
Returns the result of the asynchronous operation.
GetResult()
Returns the result of the asynchronous operation.Syntax
public EngineObject GetResult ()
Return Value
The result of an asynchronous operation. An exception is raised if the operation is still running, has been aborted or has encountered an error.
Remarks
When the background thread has finished working and stopped, when State returns Finished, you can call this method to retrieve the final result. The final result is returned as an EngineObject that must be cast to the correct result type. The correct result type is specified in the documentation for each asynchronous method. For example, DataSetInfo.FromFileAsync returns a DataSetInfo or null.
If State does not return Finished then calling GetResult will raise an exception.
Platforms
Windows, Linux, Android