Update dotnet/samples/03-workflows/Agents/WorkflowAsAnAgent/WorkflowFactory.cs

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Peter Ibekwe
2026-03-25 08:43:37 -07:00
committed by GitHub
Unverified
parent 26eb2f3bf6
commit 2b0dc2f8c5
@@ -56,7 +56,8 @@ internal static class WorkflowFactory
/// between runs, clearing accumulated state so each run starts fresh.
///
/// Without <see cref="IResettableExecutor"/>, attempting to reuse a workflow containing
/// shared stateful executor instances would throw an <see cref="InvalidOperationException"/>.
/// shared executor instances that do not implement this interface would throw an
/// <see cref="InvalidOperationException"/>.
/// </summary>
[YieldsOutput(typeof(string))]
private sealed class ConcurrentAggregationExecutor() :