mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
- Add UTF-8 BOM to 20 .cs files across DurableTask, AzureFunctions, unit tests, and workflow samples - Remove unnecessary using directive in 07_SubWorkflows/Executors.cs Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
13 lines
483 B
C#
13 lines
483 B
C#
// Copyright (c) Microsoft. All rights reserved.
|
|
|
|
namespace Microsoft.Agents.AI.DurableTask.Workflows;
|
|
|
|
/// <summary>
|
|
/// Represents a RequestPort the workflow is paused at, waiting for a response.
|
|
/// </summary>
|
|
/// <param name="EventName">The RequestPort ID identifying which input is needed.</param>
|
|
/// <param name="Input">The serialized request data passed to the RequestPort.</param>
|
|
internal sealed record PendingRequestPortStatus(
|
|
string EventName,
|
|
string Input);
|