1 implementation of IEndpointGroupNameMetadata
Microsoft.AspNetCore.Routing (1)
EndpointGroupNameAttribute.cs (1)
10
public sealed class EndpointGroupNameAttribute : Attribute,
IEndpointGroupNameMetadata
6 references to IEndpointGroupNameMetadata
Microsoft.AspNetCore.Mvc.ApiExplorer (3)
DefaultApiDescriptionProvider.cs (2)
508
var
endpointGroupName = action.EndpointMetadata.OfType<
IEndpointGroupNameMetadata
>().LastOrDefault();
EndpointMetadataApiDescriptionProvider.cs (1)
103
GroupName = 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)
168
var
endpointGroupName = endpoint.Metadata.GetMetadata<
IEndpointGroupNameMetadata
>();