Example #1
0
 private void Form1_Load(object sender, EventArgs e)
 {
     try
     {
         test();
     }
     catch  (Exception g)
     {
         HoptoadClient client = new HoptoadClient();
         MessageBox.Show(client.Send(g));
     }
 }
Example #2
0
 public static void SendToHoptoad(this Exception exception)
 {
     HoptoadClient client = new HoptoadClient();
     client.Send(exception);
 }
Example #3
0
 public static void SendToHoptoad(this Exception exception,  HttpApplication app )
 {
     HoptoadClient client = new HoptoadClient();
     client.Send(exception, app);
 }