1 implementation of IHandlerEntry
Microsoft.AspNetCore.Components.AI (1)
Pipeline\HandlerEntry.cs (1)
6
internal sealed class HandlerEntry<TState> :
IHandlerEntry
where TState : new()
4 references to IHandlerEntry
Microsoft.AspNetCore.Components.AI (4)
Pipeline\BlockMappingPipeline.cs (2)
18
private readonly List<
IHandlerEntry
> _handlers = new();
87
var
handler = _handlers[i];
Pipeline\UIAgentOptions.cs (2)
44
IHandlerEntry
CreateEntry();
56
public
IHandlerEntry
CreateEntry() => new HandlerEntry<TState>(_handler);