private void OnSendOutput(Output output) { Action<Output> handler = this.SendOutput; if (handler != null) handler(output); }
internal void DoReceiveOutput(Output output) { this.OnReceiveOutput(output); }
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); }