Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions dotnet/src/Microsoft.Agents.AI.Workflows/Workflow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,15 @@ public Dictionary<string, RequestPortInfo> ReflectPorts()
);
}

/// <summary>
/// Gets the collection of executor bindings, keyed by their ID.
/// </summary>
/// <returns>A copy of the executor bindings dictionary. Modifications do not affect the workflow.</returns>
public Dictionary<string, ExecutorBinding> ReflectExecutors()
{
return new Dictionary<string, ExecutorBinding>(this.ExecutorBindings);
}

/// <summary>
/// Gets the identifier of the starting executor of the workflow.
/// </summary>
Expand Down
Loading