You can use the IDisposable interface to invoke the Dispose event when a page navigation occurs or when a page is being closed. Below is a code example for your reference.
@page "/"
@implements IDisposable;
<h1>Hello, world!</h1>
Welcome to your new app.
@code {
public void Dispose()
{
}
}
Share with