/// <summary> /// Will raise a Schedule event /// </summary> /// <param name="e">The event arguments that should be passed</param> protected virtual void OnRaiseFinishedWaitingAndJoining(ScheduleEventArgs e) { EventHandler<ScheduleEventArgs> handler = RaiseFinishedWaitingAndJoining; if (handler != null) { handler(this, e); } }
/// <summary> /// Will raise a Schedule event /// </summary> /// <param name="e">The event arguments that should be passed</param> protected virtual void OnRaiseRetreivedScheduleItemsEvent(ScheduleEventArgs e) { EventHandler<ScheduleEventArgs> handler = RaiseRetreivedScheduleItems; if (handler != null) { handler(this, e); } }