/// <summary> /// Initializes a new instance of the <see cref="ManagerEventStateEventArgs" /> class. /// </summary> /// <param name="eventState">State of the event.</param> public ManagerEventStateEventArgs(ManagerEventStateEnum eventState) { this.EventState = eventState; }
/// <summary> /// Called when [stop]. /// </summary> /// <param name="state">The state.</param> protected virtual void OnStop(ManagerEventStateEnum state) { RaiseEvent(mEventStopDelegate, this, new ManagerEventStateEventArgs(state)); }