Demo CefSharpSettings.SubprocessExitIfParentProcessClosed

Set CefSharpSettings.SubprocessExitIfParentProcessClosed = true; to demo this feature.
This commit is contained in:
amaitland 2018-10-26 13:12:32 +10:00
parent b5ee0f5d0c
commit f36aeca119
3 changed files with 12 additions and 0 deletions

View File

@ -23,6 +23,10 @@ namespace CefSharp.MinimalExample.OffScreen
Console.WriteLine("You may see Chromium debugging output, please wait..."); Console.WriteLine("You may see Chromium debugging output, please wait...");
Console.WriteLine(); 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() var settings = new CefSettings()
{ {
//By default CefSharp will use an in-memory cache, you need to specify a Cache Folder to persist data //By default CefSharp will use an in-memory cache, you need to specify a Cache Folder to persist data

View File

@ -14,6 +14,10 @@ namespace CefSharp.MinimalExample.WinForms
[STAThread] [STAThread]
public static void Main() 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 //For Windows 7 and above, best to include relevant app.manifest entries as well
Cef.EnableHighDPISupport(); Cef.EnableHighDPISupport();

View File

@ -9,6 +9,10 @@ namespace CefSharp.MinimalExample.Wpf
{ {
public App() 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() var settings = new CefSettings()
{ {
//By default CefSharp will use an in-memory cache, you need to specify a Cache Folder to persist data //By default CefSharp will use an in-memory cache, you need to specify a Cache Folder to persist data