public IReadOnlyList<string> GetCurrentSteps()
Public Function GetCurrentSteps() As IReadOnlyList(Of String)
Return Value
The IDs of the current steps
public IReadOnlyList<string> GetCurrentSteps()
Public Function GetCurrentSteps() As IReadOnlyList(Of String)
// Gets the current step // checks to see if it can execute it // proceeds to do so if it can var wfCon = await WorkflowModule.ConnectAsync(); var jobManager = wfCon.GetManager<JobsManager>(); var job = jobManager.GetJob(jobID); string stepID = job.GetCurrentSteps().First(); if (job.CanExecuteStep(stepID).Item1) job.ExecuteStep(stepID);
Target Platforms: Windows 11, Windows 10