Example #1
0
 private void OnEscalationSuccessful(EscalationGoal escalationGoal, object sender, EventArgs e)
 {
     if (EscalationSuccessful != null)
     {
         EscalationSuccessful(escalationGoal, sender, e);
     }
 }
Example #2
0
 private void OnEscalationCancelled(EscalationGoal escalationGoal, object sender, EventArgs e)
 {
     if (EscalationCancelled != null)
     {
         EscalationCancelled(escalationGoal, sender, e);
     }
 }
Example #3
0
 private void OnEscalationStarting(EscalationGoal escalationGoal, object sender, EventArgs e)
 {
     if (EscalationStarting != null)
     {
         EscalationStarting(escalationGoal, sender, e);
     }
 }
 /// <summary>
 /// Resets EscalationGoal property.
 /// </summary>
 private void ResetEscalationGoal()
 {
     escalationGoal = EscalationGoal.StartAnotherApplication;
 }
 private void OnEscalationSuccessful(EscalationGoal escalationGoal, object sender, EventArgs e)
 {
     if (EscalationSuccessful != null)
     {
         EscalationSuccessful(escalationGoal, sender, e);
     }
 }
 private void OnEscalationStarting(EscalationGoal escalationGoal, object sender, EventArgs e)
 {
     if (EscalationStarting != null)
     {
         EscalationStarting(escalationGoal, sender, e);
     }
 }
 private void OnEscalationCancelled(EscalationGoal escalationGoal, object sender, EventArgs e)
 {
     if (EscalationCancelled != null)
     {
         EscalationCancelled(escalationGoal, sender, e);
     }
 }
Example #8
0
 /// <summary>
 /// Resets EscalationGoal property.
 /// </summary>
 private void ResetEscalationGoal()
 {
     escalationGoal = EscalationGoal.StartAnotherApplication;
 }