4 instantiations of OrderedEndpointsSequenceProvider
Microsoft.AspNetCore.Mvc.Core (1)
Infrastructure\OrderedEndpointsSequenceProviderCache.cs (1)
15return _sequenceProviderCache.GetOrAdd(endpoints, new OrderedEndpointsSequenceProvider());
Microsoft.AspNetCore.Mvc.Core.Test (2)
ApplicationModels\EndpointMetadataProviderTest.cs (1)
281new OrderedEndpointsSequenceProvider());
Routing\ControllerActionEndpointDataSourceTest.cs (1)
557new OrderedEndpointsSequenceProvider());
Microsoft.AspNetCore.Mvc.RazorPages.Test (1)
Infrastructure\PageActionEndpointDataSourceTest.cs (1)
265return new PageActionEndpointDataSource(new PageActionEndpointDataSourceIdProvider(), actions, endpointFactory, new OrderedEndpointsSequenceProvider());
8 references to OrderedEndpointsSequenceProvider
Microsoft.AspNetCore.Mvc.Core (5)
Infrastructure\OrderedEndpointsSequenceProviderCache.cs (2)
11private readonly ConcurrentDictionary<IEndpointRouteBuilder, OrderedEndpointsSequenceProvider> _sequenceProviderCache = new(); 13public OrderedEndpointsSequenceProvider GetOrCreateOrderedEndpointsSequenceProvider(IEndpointRouteBuilder endpoints)
Routing\ControllerActionEndpointDataSource.cs (2)
17private readonly OrderedEndpointsSequenceProvider _orderSequence; 24OrderedEndpointsSequenceProvider orderSequence)
Routing\ControllerActionEndpointDataSourceFactory.cs (1)
24public ControllerActionEndpointDataSource Create(OrderedEndpointsSequenceProvider orderProvider)
Microsoft.AspNetCore.Mvc.RazorPages (3)
Infrastructure\PageActionEndpointDataSource.cs (2)
17private readonly OrderedEndpointsSequenceProvider _orderSequence; 23OrderedEndpointsSequenceProvider orderedEndpoints)
Infrastructure\PageActionEndpointDataSourceFactory.cs (1)
25public PageActionEndpointDataSource Create(OrderedEndpointsSequenceProvider orderProvider)