ArcObjects Library Reference  (Geoprocessing)    

IGPServer2.Execute Method

Executes the specified tool with the supplied values and options and returns the results.

[Visual Basic 6.0]
Function Execute(
    ByVal ToolName As String, _
    ByVal Values As IGPValues, _
    ByVal options As IGPResultOptions, _
    ByVal envValues As IPropertySet _
) As IGPResult
[Visual Basic .NET]
Public Function Execute ( _
    ByVal ToolName As String, _
    ByVal Values As IGPValues, _
    ByVal options As IGPResultOptions, _
    ByVal envValues As IPropertySet _
) As IGPResult
[C#]
public IGPResult Execute (
    string ToolName,
    IGPValues Values,
    IGPResultOptions options,
    IPropertySet envValues
);
[Java]
public IGPResult execute (
    String ToolName,
    IGPValues Values,
    IGPResultOptions options,
    IPropertySet envValues
)
throws
    IOException,
    AutomationException
[C++]
HRESULT Execute(
  BSTR ToolName,
  IGPValues* Values,
  IGPResultOptions* options,
  IPropertySet* envValues,
  IGPResult** result
);
[C++]

Parameters

ToolName [in]

  ToolName is a parameter of type BSTR

Values [in]

  Values is a parameter of type IGPValues

options [in]

  options is a parameter of type IGPResultOptions

envValues [in]

  envValues is a parameter of type IPropertySet

result [out, retval]

  result is a parameter of type IGPResult

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

See Also

IGPServer2 Interface