private async Task AcquireTokenInteractiveWithEdgeAsync(Prompt prompt)
 {
     try
     {
         await SystemWebViewOptions.OpenWithEdgeBrowserAsync(new Uri("https://localhost")).ConfigureAwait(false);
     }
     catch (Exception exception)
     {
         CreateExceptionMessage(exception);
     }
 }