namespace ElectronNET.API { /// /// /// public sealed class QuitEventArgs { /// /// Will prevent the default behaviour, which is terminating the application. /// public void PreventDefault() { Electron.App.PreventQuit(); } } }