1 instantiation of RouteGroupContext
Microsoft.AspNetCore.Routing (1)
RouteGroupBuilder.cs (1)
98return new RouteGroupContext
15 references to RouteGroupContext
Microsoft.AspNetCore.Mvc.Core (1)
Routing\ActionEndpointDataSourceBase.cs (1)
52public override IReadOnlyList<Endpoint> GetGroupedEndpoints(RouteGroupContext context)
Microsoft.AspNetCore.Routing (14)
CompositeEndpointDataSource.cs (1)
79public override IReadOnlyList<Endpoint> GetGroupedEndpoints(RouteGroupContext context)
EndpointDataSource.cs (5)
29/// Get the <see cref="Endpoint"/> instances for this <see cref="EndpointDataSource"/> given the specified <see cref="RouteGroupContext.Prefix"/> and <see cref="RouteGroupContext.Conventions"/>. 33/// Returns a read-only collection of <see cref="Endpoint"/> instances given the specified group <see cref="RouteGroupContext.Prefix"/> and <see cref="RouteGroupContext.Conventions"/>. 35public virtual IReadOnlyList<Endpoint> GetGroupedEndpoints(RouteGroupContext context)
RouteEndpointDataSource.cs (1)
106public override IReadOnlyList<RouteEndpoint> GetGroupedEndpoints(RouteGroupContext context)
RouteGroupBuilder.cs (3)
54public override IReadOnlyList<Endpoint> GetGroupedEndpoints(RouteGroupContext context) => 88private RouteGroupContext GetNextRouteGroupContext( 107private IReadOnlyList<Endpoint> SelectEndpointsFromAllDataSources(RouteGroupContext 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)"/>.