Пример #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="DisplayContentEventHandler"/> class.
 /// </summary>
 /// <param name="controller">The controller.</param>
 /// <param name="nodePath">The node path.</param>
 /// <param name="value">The value.</param>
 public DisplayContentEventHandler(TddAppComController controller, string nodePath, string value)
 {
     this.controller  = controller;
     this.tcs         = new TaskCompletionSource <bool>();
     this.PushMessage = string.Empty;
     this.NodePath    = nodePath;
     this.Value       = value;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="DisplayContentEventHandler"/> class.
 /// </summary>
 /// <param name="controller">The controller.</param>
 /// <param name="nodePath">The node path.</param>
 /// <param name="value"></param>
 public SetParameterEventHandler(TddAppComController controller, string nodePath, string value)
     : base(controller, nodePath, value)
 {
 }
Пример #3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="DisplayContentEventHandler"/> class.
 /// </summary>
 /// <param name="controller">The controller.</param>
 public DisplayContentEventHandler(TddAppComController controller)
 {
     this.controller  = controller;
     this.tcs         = new TaskCompletionSource <bool>();
     this.PushMessage = string.Empty;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="SetParameterEventHandler"/> class.
 /// </summary>
 /// <param name="controller">The controller.</param>
 public SetParameterEventHandler(TddAppComController controller)
     : base(controller)
 {
 }