Ejemplo n.º 1
0
 internal static void DoNotifyUser(string sMessage, string sTitle, MessageBoxIcon oIcon)
 {
     if (FiddlerApplication.OnNotification != null)
     {
         NotificationEventArgs e = new NotificationEventArgs(string.Format("{0} - {1}", sTitle, sMessage));
         FiddlerApplication.OnNotification(null, e);
     }
     if (!CONFIG.QuietMode)
     {
         MessageBox.Show(sMessage, sTitle, MessageBoxButtons.OK, oIcon);
     }
 }