Sub StopSteps( _ ByVal jobId As String, _ Optional ByVal stepIds As List(Of String) _ )
void StopSteps( string jobId, List<string> stepIds )
Parameters
- jobId
- stepIds
Sub StopSteps( _ ByVal jobId As String, _ Optional ByVal stepIds As List(Of String) _ )
void StopSteps( string jobId, List<string> stepIds )
{
var jobManager = WorkflowClientModule.JobsManager;
// Get the job Id associated with the active map view
jobId = jobManager.GetJobId();
// Stop the current steps in the job with the given id.
jobManager.StopSteps(jobId);
}
{
var jobManager = WorkflowClientModule.JobsManager;
// Get the job Id associated with the active map view
jobId = jobManager.GetJobId();
// Specify specific running steps in a job to stop
List<string> stepIds = ["step12345", "step67890"];
jobManager.StopSteps(jobId, stepIds);
}
Target Platforms: Windows 11 Home, Pro, Enterprise (64 bit)