Exemplo n.º 1
0
 /// <summary>
 /// Stops loading the current page.
 /// </summary>
 public void stop()
 {
     if (browser != null)
     {
         browser.Stop();
         do
         {
             // Run events while waiting
             Trifle.Wait(50);
         } while (loading);
     }
 }
Exemplo n.º 2
0
 /// <summary>
 /// Stops loading the current page.
 /// </summary>
 public void stop()
 {
     if (browser != null)
     {
         Console.debug("Stop!");
         browser.Stop();
         do
         {
             // Run events while waiting
             Trifle.Wait(50);
         } while (loading);
     }
 }