void SSH_RX_LogEvent(object sender, LogArgs e) { if (this.LogEvent != null) { this.LogEvent(sender, e); } }
void LogData(object sender, LogArgs arg) { if (this.LogEvent != null) { this.LogEvent(this, arg); } this.cport.Write(arg.data); }
void DBG_LogEvent(object sender, LogArgs e) { if (this.InvokeRequired) { this.BeginInvoke((MethodInvoker)delegate { DBG_LogEvent(sender, e); }); return; } this.rtb_debug.AppendText(e.data); }
void DBG_LogEvent(object sender, LogArgs e) { if (this.InvokeRequired) { this.BeginInvoke((MethodInvoker) delegate { DBG_LogEvent(sender, e); }); return; } this.rtb_debug.AppendText(e.data); }
void LogData(object sender, LogArgs arg) { if (this.LogEvent != null) this.LogEvent(this, arg); this.cport.Write(arg.data); }
void SSH_RX_LogEvent(object sender, LogArgs e) { if (this.LogEvent != null) this.LogEvent(sender, e); }