4 instantiations of CompositeEndpointDataSource
Microsoft.AspNetCore (1)
WebApplication.cs (1)
288return new CompositeEndpointDataSource(_webApplication.DataSources).Endpoints;
Microsoft.AspNetCore.Routing (3)
DependencyInjection\RoutingServiceCollectionExtensions.cs (1)
78return new CompositeEndpointDataSource(dataSources);
EndpointRoutingMiddleware.cs (1)
56_endpointDataSource = new CompositeEndpointDataSource(endpointRouteBuilder.DataSources);
RouteGroupBuilder.cs (1)
125_compositeDataSource ??= new CompositeEndpointDataSource(_routeGroupBuilder._dataSources);
4 references to CompositeEndpointDataSource
Microsoft.AspNetCore (1)
WebApplication.cs (1)
276if (dataSource is CompositeEndpointDataSource compositeEndpointDataSource)
Microsoft.AspNetCore.Routing (3)
CompositeEndpointDataSource.cs (2)
35/// Instantiates a <see cref="CompositeEndpointDataSource"/> object from <paramref name="endpointDataSources"/>. 38/// <returns>A <see cref="CompositeEndpointDataSource"/>.</returns>
RouteGroupBuilder.cs (1)
43private CompositeEndpointDataSource? _compositeDataSource;