/// <summary> /// Raise the alert event. /// </summary> /// <remarks> /// Raises the alert event. /// </remarks> /// <param name="e">The alert event args.</param> protected virtual void OnAlert(AlertEventArgs e) { var handler = Alert; if (handler != null) { handler(this, e); } }
/// <summary> /// Raise the alert event. /// </summary> /// <remarks> /// Raises the alert event. /// </remarks> /// <param name="e">The alert event args.</param> protected virtual void OnAlert (AlertEventArgs e) { var handler = Alert; if (handler != null) handler (this, e); }