The Geoprocessor type exposes the following members.

Constructors

  NameDescription
Geoprocessor
Initializes a new instance of the Geoprocessor class

Methods

  NameDescription
Cancel
Cancels status checking and subsequent GetResultData requests. Used with asynchronous tasks, i.e., when SubmitJob is used.
CheckStatus
Sends a callback request to submit a Geoprocessing task. This operation will pass a JobInfo object to the onStatusCallback function.
Execute
Performs a geoprocessing task operation on a synchronous geoprocessing services. The result of this task is a GPResults object passed to callback function.
GetInput
Sends a callback request to get the inputs of a submitted Geoprocessing task.
GetResultData
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.
SubmitJob
Performs a geoprocessing operation on an asynchronous geoprocessing service. This operation will pass JobInfo objects to the function specified in the onStatusCallback argument while the job is executing, and a GPResults to the function specified in onCompleteCallback upon completion.

Properties

  NameDescription
Token
Authentication token to be used in the task's requests to a secured ArcGIS service.
UpdateInterval
The interval between requests to the server for status of the geoprocessing job. Interval value is in milliseconds. Default is 1000 (one second).
Url
URL of ArcGIS Server geoprocessing service exposed as a REST resource that will receive geoprocessor request.

See Also