Example #1
0
 private void OnSendOutput(Output output)
 {
     Action<Output> handler = this.SendOutput;
     if (handler != null) handler(output);
 }
Example #2
0
 internal void DoReceiveOutput(Output output)
 {
     this.OnReceiveOutput(output);
 }
Example #3
0
 protected virtual void OnReceiveOutput(Output output)
 {
     Action<Output> handler = this.ReceiveOutput;
     if (handler != null) handler(output);
 }
 private void ClientOutput(Output output)
 {
     this.AppendText(output.Text);
 }