2 implementations of EndpointName
Microsoft.AspNetCore.Routing (2)
EndpointNameAttribute.cs (1)
30
public string
EndpointName
{ get; }
EndpointNameMetadata.cs (1)
34
public string
EndpointName
{ get; }
5 references to EndpointName
Microsoft.AspNetCore.Mvc.Core (1)
Routing\ActionEndpointFactory.cs (1)
388
builder.Metadata.OfType<IEndpointNameMetadata>().LastOrDefault()?.
EndpointName
== null)
Microsoft.AspNetCore.OpenApi (2)
Services\OpenApiDocumentService.cs (1)
350
description.ActionDescriptor.EndpointMetadata.OfType<IEndpointNameMetadata>().LastOrDefault()?.
EndpointName
;
Services\OpenApiGenerator.cs (1)
76
OperationId = metadata.GetMetadata<IEndpointNameMetadata>()?.
EndpointName
,
Microsoft.AspNetCore.Routing (2)
EndpointNameAddressScheme.cs (1)
102
return endpoint.Metadata.GetMetadata<IEndpointNameMetadata>()?.
EndpointName
;
Matching\DataSourceDependentMatcher.cs (1)
50
var endpointName = endpoint.Metadata.GetMetadata<IEndpointNameMetadata>()?.
EndpointName
;