ArcGIS Pro 2.8 API Reference Guide
FinishSplitExecutionStep(IReadOnlyList<String>) Method
Example 

ArcGIS.Desktop.Workflow.Models.JobModels Namespace > Job Class > FinishSplitExecutionStep Method : FinishSplitExecutionStep(IReadOnlyList<String>) Method
Array of string arguments to pass to the step
Finishes executing a step that supports split execution
Syntax
public WorkflowExecutionResult FinishSplitExecutionStep( 
   IReadOnlyList<string> args
)
Public Overloads Function FinishSplitExecutionStep( _
   ByVal args As IReadOnlyList(Of String) _
) As WorkflowExecutionResult

Parameters

args
Array of string arguments to pass to the step

Return Value

Information on the return code and errors during completion
Example
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;
}
Requirements

Target Platforms: Windows 10, Windows 8.1

See Also

Reference

Job Class
Job Members
Overload List