internal static void SafeLaunchBrowserDemandWhenUnsafe(Uri originatingUri, Uri destinationUri, bool fIsTopLevel)
        {
            LaunchResult launchResult = AppSecurityManager.SafeLaunchBrowserOnlyIfPossible(originatingUri, destinationUri, fIsTopLevel);

            if (launchResult == LaunchResult.NotLaunched)
            {
                SecurityHelper.DemandUnmanagedCode();
                AppSecurityManager.UnsafeLaunchBrowser(destinationUri, null);
            }
        }
 // Token: 0x060078AD RID: 30893 RVA: 0x0022606C File Offset: 0x0022426C
 internal static LaunchResult SafeLaunchBrowserOnlyIfPossible(Uri originatingUri, Uri destinationUri, bool fIsTopLevel)
 {
     return(AppSecurityManager.SafeLaunchBrowserOnlyIfPossible(originatingUri, destinationUri, null, fIsTopLevel));
 }