From f36aeca119c976e857dd5e9264ecbf8ee2da4ae5 Mon Sep 17 00:00:00 2001 From: amaitland Date: Fri, 26 Oct 2018 13:12:32 +1000 Subject: [PATCH] Demo CefSharpSettings.SubprocessExitIfParentProcessClosed Set CefSharpSettings.SubprocessExitIfParentProcessClosed = true; to demo this feature. --- CefSharp.MinimalExample.OffScreen/Program.cs | 4 ++++ CefSharp.MinimalExample.WinForms/Program.cs | 4 ++++ CefSharp.MinimalExample.Wpf/App.xaml.cs | 4 ++++ 3 files changed, 12 insertions(+) diff --git a/CefSharp.MinimalExample.OffScreen/Program.cs b/CefSharp.MinimalExample.OffScreen/Program.cs index 3b304fe..4f9fd74 100644 --- a/CefSharp.MinimalExample.OffScreen/Program.cs +++ b/CefSharp.MinimalExample.OffScreen/Program.cs @@ -23,6 +23,10 @@ namespace CefSharp.MinimalExample.OffScreen Console.WriteLine("You may see Chromium debugging output, please wait..."); Console.WriteLine(); + //Monitor parent process exit and close subprocesses if parent process exits first + //This will at some point in the future becomes the default + CefSharpSettings.SubprocessExitIfParentProcessClosed = true; + var settings = new CefSettings() { //By default CefSharp will use an in-memory cache, you need to specify a Cache Folder to persist data diff --git a/CefSharp.MinimalExample.WinForms/Program.cs b/CefSharp.MinimalExample.WinForms/Program.cs index e929ba2..d310efa 100644 --- a/CefSharp.MinimalExample.WinForms/Program.cs +++ b/CefSharp.MinimalExample.WinForms/Program.cs @@ -14,6 +14,10 @@ namespace CefSharp.MinimalExample.WinForms [STAThread] public static void Main() { + //Monitor parent process exit and close subprocesses if parent process exits first + //This will at some point in the future becomes the default + CefSharpSettings.SubprocessExitIfParentProcessClosed = true; + //For Windows 7 and above, best to include relevant app.manifest entries as well Cef.EnableHighDPISupport(); diff --git a/CefSharp.MinimalExample.Wpf/App.xaml.cs b/CefSharp.MinimalExample.Wpf/App.xaml.cs index 71d9d51..89245b1 100644 --- a/CefSharp.MinimalExample.Wpf/App.xaml.cs +++ b/CefSharp.MinimalExample.Wpf/App.xaml.cs @@ -9,6 +9,10 @@ namespace CefSharp.MinimalExample.Wpf { public App() { + //Monitor parent process exit and close subprocesses if parent process exits first + //This will at some point in the future becomes the default + CefSharpSettings.SubprocessExitIfParentProcessClosed = true; + var settings = new CefSettings() { //By default CefSharp will use an in-memory cache, you need to specify a Cache Folder to persist data