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