Geoprocessing service GetToolInfos method

Gets information about tools (or tasks) in a geoprocessing service.

GetToolInfos()

Return Value

An array of GPToolInfo objects (GPToolInfo[]).

Remarks

Use the GetToolInfo method to interrogate a specific tool.

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.GPToolInfo[] tools = gpserver.GetToolInfos();

2/28/2020