コード例 #1
0
 /// <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;
 }
コード例 #2
0
 /// <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;
 }
コード例 #3
0
ファイル: ManagerBase.cs プロジェクト: JZO001/Forge
 /// <summary>
 /// Called when [stop].
 /// </summary>
 /// <param name="state">The state.</param>
 protected virtual void OnStop(ManagerEventStateEnum state)
 {
     RaiseEvent(mEventStopDelegate, this, new ManagerEventStateEventArgs(state));
 }
コード例 #4
0
 /// <summary>
 /// Called when [stop].
 /// </summary>
 /// <param name="state">The state.</param>
 protected virtual void OnStop(ManagerEventStateEnum state)
 {
     RaiseEvent(mEventStopDelegate, this, new ManagerEventStateEventArgs(state));
 }