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