示例#1
0
 /// <summary>
 /// Creates a new <c>ComputeCommandStatusArgs</c> instance.
 /// </summary>
 /// <param name="ev"> The event of the command that had its status changed. </param>
 /// <param name="status"> The status of the command. </param>
 public ComputeCommandStatusArgs(ComputeEventBase ev, int status)
     : this(ev, (ComputeCommandExecutionStatus)status)
 { }
示例#2
0
 /// <summary>
 /// Creates a new <c>ComputeCommandStatusArgs</c> instance.
 /// </summary>
 /// <param name="ev"> The event of the command that had its status changed. </param>
 /// <param name="status"> The status of the command. </param>
 public ComputeCommandStatusArgs(ComputeEventBase ev, int status)
     : this(ev, (ComputeCommandExecutionStatus)status)
 {
 }
示例#3
0
 /// <summary>
 /// Creates a new <c>ComputeCommandStatusArgs</c> instance.
 /// </summary>
 /// <param name="ev"> The event representing the command that had its status changed. </param>
 /// <param name="status"> The status of the command. </param>
 public ComputeCommandStatusArgs(ComputeEventBase ev, ComputeCommandExecutionStatus status)
 {
     Event = ev;
     Status = status;
 }
示例#4
0
 /// <summary>
 /// Creates a new <c>ComputeCommandStatusArgs</c> instance.
 /// </summary>
 /// <param name="ev"> The event representing the command that had its status changed. </param>
 /// <param name="status"> The status of the command. </param>
 public ComputeCommandStatusArgs(ComputeEventBase ev, ComputeCommandExecutionStatus status)
 {
     Event  = ev;
     Status = status;
 }