Beispiel #1
0
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="process">Process</param>
 /// <param name="thread">Thread or null if unknown</param>
 public ProcessPausedEventArgs(DbgProcess process, DbgThread thread)
 {
     Process = process ?? throw new ArgumentNullException(nameof(process));
     Thread  = thread;
 }
Beispiel #2
0
 /// <summary>
 /// Lets <paramref name="process"/> run again. If <see cref="DebuggerSettings.BreakAllProcesses"/>
 /// is true, all other processes will also run.
 /// </summary>
 /// <param name="process">Process to run</param>
 public abstract void Run(DbgProcess process);