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