2 implementations of EndpointName
Microsoft.AspNetCore.Routing (2)
EndpointNameAttribute.cs (1)
30public string EndpointName { get; }
EndpointNameMetadata.cs (1)
34public string EndpointName { get; }
3 references to EndpointName
Microsoft.AspNetCore.Mvc.Core (1)
Routing\ActionEndpointFactory.cs (1)
388builder.Metadata.OfType<IEndpointNameMetadata>().LastOrDefault()?.EndpointName == null)
Microsoft.AspNetCore.Routing (2)
EndpointNameAddressScheme.cs (1)
102return endpoint.Metadata.GetMetadata<IEndpointNameMetadata>()?.EndpointName;
Matching\DataSourceDependentMatcher.cs (1)
50var endpointName = endpoint.Metadata.GetMetadata<IEndpointNameMetadata>()?.EndpointName;