/// <summary>
 /// Event thrower. Maybe we shouldn't use the try/catch approach ... we might unintentionally hide exceptions
 /// </summary>
 /// <param name="e"></param>
 protected virtual void OnNFOUpdated(NFOUpdatedEventArgs e)
 {
     try
     {
         NFOUpdated(this, e);
     }
     catch
     {
     }
 }
Esempio n. 2
0
 /// <summary>
 /// Forces a screen refresh when the Stanford info is updated
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="e"></param>
 void Instance_NFOUpdated(object sender, NFOUpdatedEventArgs e)
 {
     refreshNeeded = true;
 }