From f8533706210171d4770e600ef4e53396ce63b691 Mon Sep 17 00:00:00 2001 From: Jacob Alber Date: Thu, 16 Apr 2026 12:42:28 -0400 Subject: [PATCH] docs: Add Handoff sample to readme --- dotnet/samples/03-workflows/README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/dotnet/samples/03-workflows/README.md b/dotnet/samples/03-workflows/README.md index d17148d60d..600a4c70ca 100644 --- a/dotnet/samples/03-workflows/README.md +++ b/dotnet/samples/03-workflows/README.md @@ -56,3 +56,9 @@ Once completed, please proceed to the other samples listed below. | [Edge Conditions](./ConditionalEdges/01_EdgeCondition) | Introduces conditional edges for dynamic routing based on executor outputs | | [Switch-Case Routing](./ConditionalEdges/02_SwitchCase) | Extends conditional edges with switch-case routing for multiple paths | | [Multi-Selection Routing](./ConditionalEdges/03_MultiSelection) | Demonstrates multi-selection routing where one executor can trigger multiple downstream executors | + +### Orchestration Patterns + +| Sample | Concepts | +|--------|----------| +| [Handoff Orchestration](./Orchestration/Handoff) | Introduces the Handoff Orchestration pattern |