2 instantiations of NotFoundEventArgs
Microsoft.AspNetCore.Components (1)
NavigationManager.cs (1)
213_notFound.Invoke(this, new NotFoundEventArgs());
Microsoft.AspNetCore.Components.Endpoints.Tests (1)
EndpointHtmlRendererTest.cs (1)
947await renderer.SetNotFoundResponseAsync(httpContext, new NotFoundEventArgs())
6 references to NotFoundEventArgs
Microsoft.AspNetCore.Components (3)
NavigationManager.cs (2)
41public event EventHandler<NotFoundEventArgs> OnNotFound 55private EventHandler<NotFoundEventArgs>? _notFound;
Routing\Router.cs (1)
392private void OnNotFound(object sender, NotFoundEventArgs args)
Microsoft.AspNetCore.Components.Endpoints (2)
Rendering\EndpointHtmlRenderer.cs (1)
66internal NotFoundEventArgs? NotFoundEventArgs { get; private set; }
Rendering\EndpointHtmlRenderer.EventDispatch.cs (1)
111private string GetNotFoundUrl(string baseUri, NotFoundEventArgs? args)
Microsoft.AspNetCore.Components.Endpoints.Tests (1)
EndpointHtmlRendererTest.cs (1)
1823public async Task SetNotFoundResponseAsync(HttpContext httpContext, NotFoundEventArgs args)