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