|
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using Microsoft.AspNetCore.Components.Routing;
namespace Microsoft.AspNetCore.Components.Endpoints;
internal sealed class UnsupportedNavigationInterception : INavigationInterception
{
public Task EnableNavigationInterceptionAsync()
{
throw new InvalidOperationException("Navigation interception calls cannot be issued during server-side static rendering, because the page has not yet loaded in the browser. " +
"Statically rendered components must wrap any navigation interception calls in conditional logic to ensure those interop calls are not attempted during static rendering.");
}
}
|