2 instantiations of NotFoundEventArgs
Microsoft.AspNetCore.Components (1)
NavigationManager.cs (1)
214_notFound.Invoke(this, new NotFoundEventArgs(NotFoundPageRoute));
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\NotFoundEventArgs.cs (1)
17/// Initializes a new instance of <see cref="NotFoundEventArgs" />.
Microsoft.AspNetCore.Components.Endpoints (2)
Rendering\EndpointHtmlRenderer.EventDispatch.cs (2)
82internal async Task SetNotFoundResponseAsync(string baseUri, NotFoundEventArgs args) 110private string GetNotFoundUrl(string baseUri, NotFoundEventArgs args)
Microsoft.AspNetCore.Components.Endpoints.Tests (1)
EndpointHtmlRendererTest.cs (1)
1823public async Task SetNotFoundResponseAsync(HttpContext httpContext, NotFoundEventArgs args)