5 overrides of GetGroupedEndpoints
Microsoft.AspNetCore.Mvc.Core (1)
Routing\ActionEndpointDataSourceBase.cs (1)
52
public override IReadOnlyList<Endpoint>
GetGroupedEndpoints
(RouteGroupContext context)
Microsoft.AspNetCore.Routing (3)
CompositeEndpointDataSource.cs (1)
79
public override IReadOnlyList<Endpoint>
GetGroupedEndpoints
(RouteGroupContext context)
RouteEndpointDataSource.cs (1)
100
public override IReadOnlyList<RouteEndpoint>
GetGroupedEndpoints
(RouteGroupContext context)
RouteGroupBuilder.cs (1)
54
public override IReadOnlyList<Endpoint>
GetGroupedEndpoints
(RouteGroupContext context) =>
Microsoft.AspNetCore.Routing.Tests (1)
CompositeEndpointDataSourceTest.cs (1)
518
public override IReadOnlyList<Endpoint>
GetGroupedEndpoints
(RouteGroupContext context)
14 references to GetGroupedEndpoints
Microsoft.AspNetCore.Mvc.Core.Test (5)
ApplicationModels\EndpointMetadataProviderTest.cs (4)
116
var endpoint = Assert.Single(FilterEndpoints(dataSource.
GetGroupedEndpoints
(routeGroupContext)));
155
var endpoint = Assert.Single(FilterEndpoints(dataSource.
GetGroupedEndpoints
(routeGroupContext)));
176
var endpoint = Assert.Single(FilterEndpoints(dataSource.
GetGroupedEndpoints
(routeGroupContext)));
197
var endpoint = Assert.Single(FilterEndpoints(dataSource.
GetGroupedEndpoints
(routeGroupContext)));
Routing\ControllerActionEndpointDataSourceTest.cs (1)
427
var endpoints = dataSource.
GetGroupedEndpoints
(new RouteGroupContext
Microsoft.AspNetCore.Mvc.RazorPages.Test (1)
Infrastructure\PageActionEndpointDataSourceTest.cs (1)
145
var endpoints = dataSource.
GetGroupedEndpoints
(new RouteGroupContext
Microsoft.AspNetCore.Routing (7)
CompositeEndpointDataSource.cs (1)
93
groupedEndpoints.AddRange(dataSource.
GetGroupedEndpoints
(context));
RouteGroupBuilder.cs (2)
66
1 => _routeGroupBuilder._dataSources[0].
GetGroupedEndpoints
(GetNextRouteGroupContext(prefix, conventions, finallyConventions, applicationServices)),
113
groupedEndpoints.AddRange(dataSource.
GetGroupedEndpoints
(context));
RouteGroupContext.cs (4)
10
/// Represents the information accessible to <see cref="EndpointDataSource.
GetGroupedEndpoints
(RouteGroupContext)"/>.
16
/// returned by the call to <see cref="EndpointDataSource.
GetGroupedEndpoints
(RouteGroupContext)"/>. This accounts for nested groups and gives the full group prefix
24
/// returned from <see cref="EndpointDataSource.
GetGroupedEndpoints
(RouteGroupContext)"/>.
31
/// returned from <see cref="EndpointDataSource.
GetGroupedEndpoints
(RouteGroupContext)"/>.
Microsoft.AspNetCore.Routing.Tests (1)
CompositeEndpointDataSourceTest.cs (1)
521
var resolved = base.
GetGroupedEndpoints
(context);