Web-Development-with-Blazor.../Chapter07/MyBlog/Components/Pages/ErrorBoundaryTest.razor

14 lines
256 B
Plaintext
Raw Normal View History

2023-02-17 15:28:17 +01:00
@page "/errorboundarytest"
<ErrorBoundary Context=ex>
<ChildContent>
<p>@(1/zero)</p>
</ChildContent>
<ErrorContent>
An error occured
@ex.Message
</ErrorContent>
</ErrorBoundary>
@code {
int zero = 0;
}