protected virtual void OnCommandErrorDataReceived(CommandOutputEventArgs e)
        {
            CommandErrorReceivedEventHandler handler = CommandErrorDataReceived;

            if (handler != null)
            {
                handler(this, e);
            }
        }
Beispiel #2
0
 protected virtual void OnCommandErrorDataReceived(CommandOutputEventArgs e)
 {
     CommandErrorReceivedEventHandler handler = CommandErrorDataReceived;
     if (handler != null) handler(this, e);
 }