protected virtual void OnHaveOutput(HaveOutputEventArgs e) { if (haveOutput != null) { haveOutput(this, e); } }
private void PostMessage(string message, int err) { HaveOutputEventArgs e = new HaveOutputEventArgs(message, err); OnHaveOutput(e); }