4 instantiations of CompositeEndpointDataSource
Microsoft.AspNetCore (1)
WebApplication.cs (1)
288
return new
CompositeEndpointDataSource
(_webApplication.DataSources).Endpoints;
Microsoft.AspNetCore.Routing (3)
DependencyInjection\RoutingServiceCollectionExtensions.cs (1)
78
return 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)
276
if (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)
43
private
CompositeEndpointDataSource
? _compositeDataSource;