1 implementation of IEndpointGroupNameMetadata
Microsoft.AspNetCore.Routing (1)
EndpointGroupNameAttribute.cs (1)
10public sealed class EndpointGroupNameAttribute : Attribute, IEndpointGroupNameMetadata
6 references to IEndpointGroupNameMetadata
Microsoft.AspNetCore.Mvc.ApiExplorer (3)
DefaultApiDescriptionProvider.cs (2)
505var endpointGroupName = action.EndpointMetadata.OfType<IEndpointGroupNameMetadata>().LastOrDefault();
EndpointMetadataApiDescriptionProvider.cs (1)
105GroupName = routeEndpoint.Metadata.GetMetadata<IEndpointGroupNameMetadata>()?.EndpointGroupName,
Microsoft.AspNetCore.Routing (1)
Builder\RoutingEndpointConventionBuilderExtensions.cs (1)
117/// The <see cref="IEndpointGroupNameMetadata" /> on the endpoint is used to set the endpoint's
Microsoft.AspNetCore.Routing.Tests (2)
Builder\RoutingEndpointConventionBuilderExtensionsTest.cs (2)
168var endpointGroupName = endpoint.Metadata.GetMetadata<IEndpointGroupNameMetadata>();