Table of Contents

Interface IScopedStep

Namespace
FlowOrchestrator.Core.Abstractions
Assembly
FlowOrchestrator.Core.dll

Marks a StepMetadata as a scoped container (e.g. a loop) that owns a nested StepCollection executed per iteration.

public interface IScopedStep

Properties

Steps

Child steps executed within each iteration of the scope. Keys are resolved at runtime with the iteration index injected as a numeric segment (e.g. "processItem.0.validate").

StepCollection Steps { get; set; }

Property Value

StepCollection

Type

The type name of the scope handler (e.g. "foreach").

string Type { get; set; }

Property Value

string