I have a Windows MAUI .NET 9 app which can be opened with a URI. My clients present a web page to their users, who can click on a button to request my MAUI (WinUI) app to open and do something. The URI that opens my app includes a URI to open when done, which is typically the original web page.
The issue is that I want to open the same browser (if that's what it is) that opened my app, which may not be the default browser. It is easy, of course to open a web page using Launcher.Default.OpenAsync(), but that will open with the default browser.