Beispiel #1
0
 protected internal virtual void OnChildProcessLaunching(ProcessLaunchingEventArgs e)
 {
     var handler = ChildProcessLaunching;
     if (handler != null) {
         handler(this, e);
     }
 }
        private void OnBeforeChildProcessLaunch(IntPtr self, IntPtr commandLine)
        {
            var e = new ProcessLaunchingEventArgs {
                CommandLine = CommandLine.FromHandle(commandLine)
            };

            _appDelegate.OnChildProcessLaunching(e);
        }