Files
microsoft--semantic-kernel/dotnet/samples/GettingStartedWithProcesses/Step03/Steps/ExternalStep.cs
T
wehub-resource-sync b957a53def
CodeQL / Analyze (csharp) (push) Waiting to run
CodeQL / Analyze (python) (push) Waiting to run
chore: import upstream snapshot with attribution
2026-07-13 13:21:23 +08:00

21 lines
624 B
C#

// Copyright (c) Microsoft. All rights reserved.
using Microsoft.SemanticKernel;
namespace Step03.Steps;
/// <summary>
/// Step used in the Processes Samples:
/// - Step_03_FoodPreparation.cs
/// </summary>
public class ExternalStep(string externalEventName) : KernelProcessStep
{
private readonly string _externalEventName = externalEventName;
[KernelFunction]
public async Task EmitExternalEventAsync(KernelProcessStepContext context, object data)
{
await context.EmitEventAsync(new() { Id = this._externalEventName, Data = data, Visibility = KernelProcessEventVisibility.Public });
}
}