Sends a callback request to get the results of a submitted Geoprocessing task. Called on completion of a Geoprocessor submit task. The result of this action is a ParameterValue object passed to the callback function.

Namespace:  ESRI.ArcGIS.VE
  (in ArcGISVE.exe)

Syntax

JScript
 function GetResultData(
	jobId : String, 
	paramName : String, 
	callback : Function
)

Parameters

jobId
Type: String
Job ID of Geoprocessing task.
paramName
Type: String
Name of parameter in the Geoprocessing task.
callback
Type: Function
The function that will handle the callback response. This function must take one argument, which will be the ParameterValue object results of the task.

See Also