예제 #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ApplicationShutdownCanceled"/> class.
 /// </summary>
 /// <param name="reason">The reason.</param>
 public ApplicationShutdownCanceled(Boot.ApplicationShutdownReason reason)
 {
     this.Reason = reason;
 }
예제 #2
0
 public ApplicationShutdownCanceled(Object sender, Boot.ApplicationShutdownReason reason)
     : base(sender)
 {
     this.Reason = reason;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="ApplicationShutdownRequested"/> class.
 /// </summary>
 /// <param name="reason">The reason.</param>
 public ApplicationShutdownRequested(Boot.ApplicationShutdownReason reason)
 {
     this.Reason = reason;
 }