2 writes to RoutePattern
Microsoft.AspNetCore.Routing (1)
RouteEndpointBuilder.cs (1)
43RoutePattern = routePattern;
Microsoft.AspNetCore.StaticAssets (1)
Development\StaticAssetDevelopmentRuntimeHandler.cs (1)
323routeEndpoint.RoutePattern = RoutePatternFactory.Parse(
7 references to RoutePattern
Microsoft.AspNetCore.Components.Endpoints (1)
Builder\RazorComponentEndpointFactory.cs (1)
74builder.DisplayName = $"{builder.RoutePattern.RawText} ({pageDefinition.DisplayName})";
Microsoft.AspNetCore.Identity (1)
IdentityApiEndpointRouteBuilderExtensions.cs (1)
188var finalPattern = ((RouteEndpointBuilder)endpointBuilder).RoutePattern.RawText;
Microsoft.AspNetCore.Routing (4)
RouteEndpointBuilder.cs (4)
20/// Gets or sets the <see cref="RoutePattern"/> associated with this endpoint. 33/// <param name="routePattern">The <see cref="RoutePattern"/> to use in URL matching.</param> 57RoutePattern, 59CreateMetadataCollection(Metadata, RoutePattern),
Microsoft.AspNetCore.StaticAssets (1)
Development\StaticAssetDevelopmentRuntimeHandler.cs (1)
317if (endpoint is not RouteEndpointBuilder routeEndpoint || routeEndpoint is not { RoutePattern.RawText: { } pattern })