Ports
Key Characteristics of Ports
When to Use Ports
Communication Guide Table
Triggered by
Description
[DataContract(Name = "a44e9a38-ab13-4f86-844a-86fefa925b53")]
public class AlertPort : IPort,
IEventHandler<UserCreated>
{
public Task HandleAsync(UserCreated @event)
{
//Implement your custom logic here
return Task.CompletedTask;
}
}Last updated
Was this helpful?