Geoprocessing service GetTaskInfos method
Gets information about tasks (or tools) in a geoprocessing service which uses the data types supported by ArcGIS Explorer Desktop.
GetTaskInfos()
Return Value
An array of GPToolInfo objects (GPToolInfo[]).
Remarks
This method is used to return all the tasks (tools) published within an geoprocessing service which uses the data types supported by the desktop application ArcGIS Explorer. For all other clients, use the GetToolInfos 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;
ESRI.ArcGIS.SOAP.GPTaskInfo[] tasks = gpserver.GetTaskInfos();
2/28/2020