Run() public method

Runs the Hawkeye application.
public Run ( ) : void
return void
Ejemplo n.º 1
0
 /// <summary>
 /// Runs the Hawkeye application.
 /// </summary>
 /// <param name="windowToSpy">The window to spy.</param>
 /// <param name="windowToKill">The window to kill.</param>
 /// <remarks>
 /// Use this method to run Hawkeye in its own process.
 /// </remarks>
 public static void Run(IntPtr windowToSpy, IntPtr windowToKill)
 {
     Shell.Run(windowToSpy, windowToKill);
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Runs the Hawkeye application.
 /// </summary>
 /// <remarks>
 /// Use this method to run Hawkeye in its own process.
 /// </remarks>
 public static void Run()
 {
     Shell.Run();
 }