diff --git a/.github/agents/whats-new-from-release-notes.agent.md b/.github/agents/whats-new-from-release-notes.agent.md index 7c6f2424073c..b919100008ed 100644 --- a/.github/agents/whats-new-from-release-notes.agent.md +++ b/.github/agents/whats-new-from-release-notes.agent.md @@ -7,10 +7,6 @@ description: > Use this agent when processing new .NET preview release notes into the What's New article, or when checking for incremental updates to already-processed release notes. -tools: - - githubread - - lexical-code-search - - semantic-code-search ai-usage: ai-assisted author: tdykstra ms.author: wpickett diff --git a/aspnetcore/blazor/state-management/server.md b/aspnetcore/blazor/state-management/server.md index 3a585881e016..00a211032340 100644 --- a/aspnetcore/blazor/state-management/server.md +++ b/aspnetcore/blazor/state-management/server.md @@ -160,17 +160,17 @@ Pausing a circuit stores details about the circuit in client-side browser storag From a JavaScript event handler: -* Call `Blazor.pause` to pause a circuit. -* Call `Blazor.resume` to resume a circuit. +* Call `Blazor.pauseCircuit` to pause a circuit. +* Call `Blazor.resumeCircuit` to resume a circuit. The following example assumes that a circuit isn't required for an app that isn't visible: ```javascript window.addEventListener('visibilitychange', () => { if (document.visibilityState === 'hidden') { - Blazor.pause(); + Blazor.pauseCircuit(); } else if (document.visibilityState === 'visible') { - Blazor.resume(); + Blazor.resumeCircuit(); } }); ``` diff --git a/aspnetcore/release-notes/aspnetcore-10/includes/blazor.md b/aspnetcore/release-notes/aspnetcore-10/includes/blazor.md index 0ecfc4acf6f3..511f6c7c24e5 100644 --- a/aspnetcore/release-notes/aspnetcore-10/includes/blazor.md +++ b/aspnetcore/release-notes/aspnetcore-10/includes/blazor.md @@ -686,7 +686,7 @@ During server-side rendering, Blazor Web Apps can now persist a user's session ( * Proactive resource management (pausing inactive circuits) * [Enhanced navigation](xref:blazor/fundamentals/routing?view=aspnetcore-10.0#enhanced-navigation-and-form-handling) -For more information, see . +For more information, see . ### Hot Reload for Blazor WebAssembly and .NET on WebAssembly