1 implementation of IHandlerEntry
Microsoft.AspNetCore.Components.AI (1)
Pipeline\HandlerEntry.cs (1)
6
internal sealed class HandlerEntry<TState> :
IHandlerEntry
where TState : new()
7 references to IHandlerEntry
Microsoft.AspNetCore.Components.AI (7)
Pipeline\BlockMappingContext.cs (3)
15
private readonly IReadOnlyList<
IHandlerEntry
>? _handlers;
21
IReadOnlyList<
IHandlerEntry
>? handlers = null)
98
foreach (
var
handler in _handlers)
Pipeline\BlockMappingPipeline.cs (2)
18
private readonly List<
IHandlerEntry
> _handlers = new();
102
var
handler = _handlers[i];
Pipeline\UIAgentOptions.cs (2)
73
IHandlerEntry
CreateEntry();
85
public
IHandlerEntry
CreateEntry() => new HandlerEntry<TState>(_handler);