From 8de69dbfeda76f277af465c4c7e66dd759193c91 Mon Sep 17 00:00:00 2001 From: Luke Latham <1622880+guardrex@users.noreply.github.com> Date: Mon, 13 Apr 2026 11:35:10 -0500 Subject: [PATCH 1/2] Update Blazor pause/resume method names (#36988) --- aspnetcore/blazor/state-management/server.md | 8 ++++---- aspnetcore/release-notes/aspnetcore-10/includes/blazor.md | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) 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 From 9fca99f3fd23b2fd3db367efe45fcd4a556082a4 Mon Sep 17 00:00:00 2001 From: Copilot <198982749+Copilot@users.noreply.github.com> Date: Mon, 13 Apr 2026 09:54:03 -0700 Subject: [PATCH 2/2] Remove invalid tools list from whats-new-from-release-notes agent (#36984) * Initial plan * Plan: remove invalid tools list from agent frontmatter Agent-Logs-Url: https://github.com/dotnet/AspNetCore.Docs/sessions/3e0ae18e-31ba-4964-875e-cc73813abad8 Co-authored-by: wadepickett <10985336+wadepickett@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: wadepickett <10985336+wadepickett@users.noreply.github.com> --- .github/agents/whats-new-from-release-notes.agent.md | 4 ---- 1 file changed, 4 deletions(-) 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