Geoprocessing service GetToolNames method

Gets a list of all tool names in a geoprocessing service.

GetToolNames()

Return Value

An array of string values (string[]) containing each of the tool names.

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[] toolnames = gpserver.GetToolNames();

2/28/2020