3 implementations of Name
Microsoft.AspNetCore.Http.Extensions.Tests (1)
RequestDelegateFactoryTests.cs (1)
3555public string? Name { get; set; }
Microsoft.AspNetCore.Mvc.Core (1)
FromRouteAttribute.cs (1)
36public string? Name { get; set; }
Microsoft.AspNetCore.Routing.Tests (1)
Builder\RouteHandlerEndpointRouteBuilderExtensionsTest.cs (1)
1101public string? Name { get; set; }
3 references to Name
Microsoft.AspNetCore.Http.Extensions (1)
RequestDelegateFactory.cs (1)
721var routeName = routeAttribute.Name ?? parameter.Name;
Microsoft.AspNetCore.Mvc.ApiExplorer (1)
EndpointMetadataApiDescriptionProvider.cs (1)
259return (BindingSource.Path, routeAttribute.Name ?? name, false, parameterType);
Microsoft.AspNetCore.OpenApi (1)
Services\OpenApiGenerator.cs (1)
405return (false, ParameterLocation.Path, routeAttribute.Name);