void StopSteps( string jobId, List<string> stepIds )
Sub StopSteps( _ ByVal jobId As String, _ Optional ByVal stepIds As List(Of String) _ )
Parameters
- jobId
- stepIds
void StopSteps( string jobId, List<string> stepIds )
Sub StopSteps( _ ByVal jobId As String, _ Optional ByVal stepIds As List(Of String) _ )
var jobManager = WorkflowClientModule.JobsManager; // Get the job Id associated with the active map view var 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 var jobId = jobManager.GetJobId(); // Specify specific running steps in a job to stop stepIds = new List<string> { "step12345", "step67890" }; jobManager.StopSteps(jobId, stepIds);
Target Platforms: Windows 11, Windows 10