Beispiel #1
0
 private void command_ExceptionLogged(object sender, NpmExceptionEventArgs e) {
     OnExceptionLogged(e.Exception);
 }
Beispiel #2
0
 public void LogException(object sender, NpmExceptionEventArgs e)
 {
     OnExceptionLogged(e.Exception);
 }
 private void NpmController_ExceptionLogged(object sender, NpmExceptionEventArgs e)
 {
     WriteNpmLogToOutputWindow(ErrorHelper.GetExceptionDetailsText(e.Exception));
 }
 internal void commander_ExceptionLogged(object sender, NpmExceptionEventArgs e)
 {
     Application.Current.Dispatcher.BeginInvoke(
         new Action(() => WriteLines(ErrorHelper.GetExceptionDetailsText(e.Exception), true)));
 }
 public void LogException(object sender, NpmExceptionEventArgs e) {
     OnExceptionLogged(e.Exception);
 }
 private void WriteNpmException(object sender, NpmExceptionEventArgs e)
 {
     this.outputPane.WriteLine(ErrorHelper.GetExceptionDetailsText(e.Exception));
 }
Beispiel #7
0
 private void command_ExceptionLogged(object sender, NpmExceptionEventArgs e)
 {
     OnExceptionLogged(e.Exception);
 }