Skip to content

Commit 569b2a3

Browse files
authored
Add a link to Not Found coverage (#37017)
1 parent e4863ac commit 569b2a3

File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed

aspnetcore/blazor/fundamentals/handle-errors.md

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -964,7 +964,7 @@ Infinite loops during rendering:
964964
* Causes the rendering process to continue forever.
965965
* Is equivalent to creating an unterminated loop.
966966

967-
In these scenarios, the Blazor fails and usually attempts to:
967+
In these scenarios, Blazor fails and usually attempts to:
968968

969969
* Consume as much CPU time as permitted by the operating system, indefinitely.
970970
* Consume an unlimited amount of memory. Consuming unlimited memory is equivalent to the scenario where an unterminated loop adds entries to a collection on every iteration.
@@ -989,7 +989,18 @@ Consider manual render tree builder logic on the same level of complexity and wi
989989

990990
## Additional resources
991991

992-
:::moniker range=">= aspnetcore-8.0"
992+
:::moniker range=">= aspnetcore-10.0"
993+
994+
* [Handle caught exceptions outside of a Razor component's lifecycle](xref:blazor/components/sync-context#handle-caught-exceptions-outside-of-a-razor-components-lifecycle)
995+
* [Not Found responses](xref:blazor/fundamentals/navigation#not-found-responses)
996+
* <xref:blazor/fundamentals/logging>
997+
* <xref:fundamentals/error-handling>&dagger;
998+
* <xref:web-api/index>
999+
* [Blazor samples GitHub repository (`dotnet/blazor-samples`)](https://github.com/dotnet/blazor-samples) ([how to download](xref:blazor/fundamentals/index#sample-apps))
1000+
1001+
:::moniker-end
1002+
1003+
:::moniker range=">= aspnetcore-8.0 < aspnetcore-10.0"
9931004

9941005
* [Handle caught exceptions outside of a Razor component's lifecycle](xref:blazor/components/sync-context#handle-caught-exceptions-outside-of-a-razor-components-lifecycle)
9951006
* <xref:blazor/fundamentals/logging>

0 commit comments

Comments
 (0)