You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: aspnetcore/blazor/fundamentals/handle-errors.md
+13-2Lines changed: 13 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -964,7 +964,7 @@ Infinite loops during rendering:
964
964
* Causes the rendering process to continue forever.
965
965
* Is equivalent to creating an unterminated loop.
966
966
967
-
In these scenarios, the Blazor fails and usually attempts to:
967
+
In these scenarios, Blazor fails and usually attempts to:
968
968
969
969
* Consume as much CPU time as permitted by the operating system, indefinitely.
970
970
* 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
989
989
990
990
## Additional resources
991
991
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>†
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))
*[Handle caught exceptions outside of a Razor component's lifecycle](xref:blazor/components/sync-context#handle-caught-exceptions-outside-of-a-razor-components-lifecycle)
0 commit comments