13 writes to Conventions
Microsoft.AspNetCore.Mvc.Core.Test (5)
ApplicationModels\EndpointMetadataProviderTest.cs (4)
105Conventions = new Action<EndpointBuilder>[] 148Conventions = new Action<EndpointBuilder>[] 169Conventions = new Action<EndpointBuilder>[] 190Conventions = new Action<EndpointBuilder>[]
Routing\ControllerActionEndpointDataSourceTest.cs (1)
430Conventions = groupConventions,
Microsoft.AspNetCore.Mvc.RazorPages.Test (1)
Infrastructure\PageActionEndpointDataSourceTest.cs (1)
148Conventions = groupConventions,
Microsoft.AspNetCore.Routing (1)
RouteGroupBuilder.cs (1)
101Conventions = combinedConventions,
Microsoft.AspNetCore.Routing.Tests (6)
CompositeEndpointDataSourceTest.cs (6)
51Conventions = conventions, 72Conventions = Array.Empty<Action<EndpointBuilder>>(), 300Conventions = conventions, 346Conventions = conventions, 401Conventions = conventions, 464Conventions = conventions,
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);