From cc55a2b303cc054c105be759416023d883c5aa95 Mon Sep 17 00:00:00 2001 From: John Kennedy Date: Thu, 9 Apr 2026 14:22:59 -0700 Subject: [PATCH 1/2] Document RemoteDesktopRegistrar.ConnectionCenterRequested event (ADO #562869) New event raised when the user requests the boot to cloud Connection Center in a remote desktop provider app. Adds new event ref topic and updates the RemoteDesktopRegistrar class overview with the -events table. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .../remotedesktopregistrar.md | 5 +++- ...ktopregistrar_connectioncenterrequested.md | 30 +++++++++++++++++++ 2 files changed, 34 insertions(+), 1 deletion(-) create mode 100644 windows.system.remotedesktop.provider/remotedesktopregistrar_connectioncenterrequested.md diff --git a/windows.system.remotedesktop.provider/remotedesktopregistrar.md b/windows.system.remotedesktop.provider/remotedesktopregistrar.md index 25f9a63542..c4d9aedc6c 100644 --- a/windows.system.remotedesktop.provider/remotedesktopregistrar.md +++ b/windows.system.remotedesktop.provider/remotedesktopregistrar.md @@ -19,8 +19,11 @@ Provides methods for querying the status of the remote desktop features enabled ## -remarks +## -events - +| Event | Description | +|-------|-------------| +| [ConnectionCenterRequested](remotedesktopregistrar_connectioncenterrequested.md) | Raised when the user requests the boot to cloud Connection Center. | ## -see-also diff --git a/windows.system.remotedesktop.provider/remotedesktopregistrar_connectioncenterrequested.md b/windows.system.remotedesktop.provider/remotedesktopregistrar_connectioncenterrequested.md new file mode 100644 index 0000000000..4547962cd8 --- /dev/null +++ b/windows.system.remotedesktop.provider/remotedesktopregistrar_connectioncenterrequested.md @@ -0,0 +1,30 @@ +--- +-api-id: E:Windows.System.RemoteDesktop.Provider.RemoteDesktopRegistrar.ConnectionCenterRequested +-api-type: winrt event +--- + +# Windows.System.RemoteDesktop.Provider.RemoteDesktopRegistrar.ConnectionCenterRequested + + + + +## -description + +Raised when the user requests the boot to cloud Connection Center in a remote desktop provider app. + +## -remarks + +Remote desktop provider apps running in the [boot to cloud](/windows-365/enterprise/windows-365-boot-overview#connection-center-at-logon) scenario should subscribe to this event to receive notifications when the user has requested the Connection Center. When the event is raised, the app should display the Connection Center UI to the user. + +> [!IMPORTANT] +> The **RemoteDesktopRegistrar** API is part of a Limited Access Feature (see [LimitedAccessFeatures class](/uwp/api/windows.applicationmodel.limitedaccessfeatures)). For more information or to request an unlock token, please use the [LAF Access Token Request Form](https://go.microsoft.com/fwlink/?linkid=2271232&clcid=0x409). + +## -see-also + +[RemoteDesktopRegistrar](remotedesktopregistrar.md) + +## -examples + + From 92d3a47b077e0647cd039bce71b871de35ab9c17 Mon Sep 17 00:00:00 2001 From: John Kennedy Date: Tue, 14 Apr 2026 10:17:11 -0700 Subject: [PATCH 2/2] Fix Copilot feedback: description wording and LAF note reference - Description: 'Raised when the user requests...' -> 'Raised to notify a remote desktop provider app that the user has requested...' Clarifies this is a notification delivered to the app, not an in-app action. - IMPORTANT note: 'RemoteDesktopRegistrar API' -> 'ConnectionCenterRequested event' The note is on the event page; referring to the parent class was ambiguous. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .../remotedesktopregistrar_connectioncenterrequested.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/windows.system.remotedesktop.provider/remotedesktopregistrar_connectioncenterrequested.md b/windows.system.remotedesktop.provider/remotedesktopregistrar_connectioncenterrequested.md index 4547962cd8..3c77e67267 100644 --- a/windows.system.remotedesktop.provider/remotedesktopregistrar_connectioncenterrequested.md +++ b/windows.system.remotedesktop.provider/remotedesktopregistrar_connectioncenterrequested.md @@ -12,14 +12,14 @@ public static event Windows.Foundation.EventHandler ConnectionCenterRequ ## -description -Raised when the user requests the boot to cloud Connection Center in a remote desktop provider app. +Raised to notify a remote desktop provider app that the user has requested the boot to cloud Connection Center. ## -remarks Remote desktop provider apps running in the [boot to cloud](/windows-365/enterprise/windows-365-boot-overview#connection-center-at-logon) scenario should subscribe to this event to receive notifications when the user has requested the Connection Center. When the event is raised, the app should display the Connection Center UI to the user. > [!IMPORTANT] -> The **RemoteDesktopRegistrar** API is part of a Limited Access Feature (see [LimitedAccessFeatures class](/uwp/api/windows.applicationmodel.limitedaccessfeatures)). For more information or to request an unlock token, please use the [LAF Access Token Request Form](https://go.microsoft.com/fwlink/?linkid=2271232&clcid=0x409). +> The **ConnectionCenterRequested** event is part of a Limited Access Feature (see [LimitedAccessFeatures class](/uwp/api/windows.applicationmodel.limitedaccessfeatures)). For more information or to request an unlock token, please use the [LAF Access Token Request Form](https://go.microsoft.com/fwlink/?linkid=2271232&clcid=0x409). ## -see-also