Performs the find operation using a callback request. The request is sent to the map resource identified by the URL property of the FindTask. The result of this operation is a FindResults object passed to callback function.

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

Syntax

JScript
 function Execute(
	parameters : FindParameters, 
	callback : Function
)

Parameters

parameters
Type: FindParameters
FindParameters object with parameters for the find operation.
callback
Type: Function
The JavaScript function that will handle the callback response. The callback function must take one argument, which will be an FindResults object.

Remarks

See the FindTask overview for a code snippet showing the use of the task.

See Also