Geoprocessing service GetTaskNames method

Gets a list of task (or tool) names in a geoprocessing service that meets the data requirements to be a task consumed by ArcGIS Explorer Desktop.

GetTaskNames()

Return Value

An array of string values (string[]).

Remarks

This method returns the set of tools in the geoprocessing service that meet the data requirements to be a task consumed by ArcGIS Explorer Desktop. In this context, tasks are tools which only use the data types supported by ArcGIS Explorer Desktop. For all other clients, use the GetToolNames method.

Examples

C#

string endpoint = "http://sampleserver1.arcgisonline.com/ArcGIS/services/Elevation/ESRI_Elevation_World/GPServer";

ESRI.ArcGIS.SOAP.GPServerProxy gpserver = new ESRI.ArcGIS.SOAP.GPServerProxy();

gpserver.Url = endpoint;

string[] tasknames = gpserver.GetTaskNames();

11/8/2016