FinishSplitExecutionStep(IReadOnlyList<String>) Method
Finishes executing a step that supports split execution
Parameters
- args
- Array of string arguments to pass to the step
Return Value
Information on the return code and errors during completion
Finish split execution of current step and check for an exception
string[] args = new string[] { "/ReturnCode:3"}
WorkflowExecutionResult result = job.FinishSplitExecutionStep(args);
// Check if the step threw an exception
if (result.Exception != null)
{
// Throw it for a higher level to deal with
throw result.Exception;
}
if (result.HasReturnCode)
{
return result.ReturnCode;
}
Target Platforms: Windows 11, Windows 10
ArcGIS Pro version: 3 or higher.