Executes a geoprocessing task. Designed for use with synchronous geoprocessing tasks.
Syntax
Visual Basic (Declaration) | |
---|
Public Function Execute( _
ByVal taskName As String, _
ByVal values() As ESRI.ArcGIS.ADF.Web.DataSources.GPValue _
) As ESRI.ArcGIS.ADF.Web.DataSources.GPResult |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As GeoprocessingFunctionality
Dim taskName As String
Dim values() As ESRI.ArcGIS.ADF.Web.DataSources.GPValue
Dim value As ESRI.ArcGIS.ADF.Web.DataSources.GPResult
value = instance.Execute(taskName, values) |
C# | |
---|
public ESRI.ArcGIS.ADF.Web.DataSources.GPResult Execute(
string taskName,
ESRI.ArcGIS.ADF.Web.DataSources.GPValue[] values
) |
Parameters
- taskName
- Name of the geoprocessing task to execute.
- values
- An array of values to use for executing the task.
Return Value
The result of the geoprocessing task execution.
Remarks
Requirements
Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family
See Also