3 implementations of ICollectionFactory
Microsoft.AspNetCore.Components.Endpoints (3)
FormMapping\Converters\CollectionAdapters\ArrayCollectionFactory.cs (1)
6internal sealed class ArrayCollectionFactory<TElement> : ICollectionFactory<TElement[], TElement>
FormMapping\Converters\CollectionAdapters\ImmutableQueueBufferAdapter.cs (1)
12internal class ImmutableQueueFactory : ICollectionFactory<ImmutableQueue<TElement>, TElement>
FormMapping\Converters\CollectionAdapters\ImmutableStackBufferAdapter.cs (1)
12internal class ImmutableStackFactory : ICollectionFactory<ImmutableStack<TElement>, TElement>
1 reference to ICollectionFactory
Microsoft.AspNetCore.Components.Endpoints (1)
FormMapping\Converters\CollectionAdapters\ArrayPoolBufferAdapter.cs (1)
10where TCollectionFactory : ICollectionFactory<TCollection, TElement>