3 writes to Path
Microsoft.AspNetCore.Components (1)
Routing\Router.cs (1)
405args.Path = _notFoundPageRoute;
Microsoft.AspNetCore.Components.Tests (2)
Routing\RouterTest.cs (2)
378args.Path = "/jan"; // Point to an existing route 431args.Path = "/jan"; // This should take precedence over NotFoundPage
6 references to Path
Microsoft.AspNetCore.Components (4)
Routing\Router.cs (4)
394bool renderContentIsProvided = NotFoundPage != null || args.Path != null; 397if (!string.IsNullOrEmpty(args.Path)) 400_renderHandle.Render(builder => RenderComponentByRoute(builder, args.Path)); 408Log.DisplayingNotFound(_logger, args.Path);
Microsoft.AspNetCore.Components.Endpoints (2)
RazorComponentEndpointInvoker.cs (1)
185string.IsNullOrEmpty(_renderer.NotFoundEventArgs?.Path))
Rendering\EndpointHtmlRenderer.EventDispatch.cs (1)
113string? path = args?.Path;