1 write to Conventions
Microsoft.AspNetCore.Routing (1)
RouteGroupBuilder.cs (1)
101Conventions = combinedConventions,
6 references to Conventions
Microsoft.AspNetCore.Mvc.Core (1)
Routing\ActionEndpointDataSourceBase.cs (1)
58context.Conventions,
Microsoft.AspNetCore.Routing (5)
EndpointDataSource.cs (3)
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"/>. 62foreach (var convention in context.Conventions)
RouteEndpointDataSource.cs (1)
111endpoints[i] = (RouteEndpoint)CreateRouteEndpointBuilder(_routeEntries[i], context.Prefix, context.Conventions, context.FinallyConventions).Build();
RouteGroupBuilder.cs (1)
55GetGroupedEndpointsWithNullablePrefix(context.Prefix, context.Conventions, context.FinallyConventions, context.ApplicationServices);