Ejemplo n.º 1
0
 private void command_ExceptionLogged(object sender, NpmExceptionEventArgs e) {
     OnExceptionLogged(e.Exception);
 }
Ejemplo n.º 2
0
 public void LogException(object sender, NpmExceptionEventArgs e)
 {
     OnExceptionLogged(e.Exception);
 }
Ejemplo n.º 3
0
 private void NpmController_ExceptionLogged(object sender, NpmExceptionEventArgs e)
 {
     WriteNpmLogToOutputWindow(ErrorHelper.GetExceptionDetailsText(e.Exception));
 }
Ejemplo n.º 4
0
 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);
 }
Ejemplo n.º 6
0
 private void WriteNpmException(object sender, NpmExceptionEventArgs e)
 {
     this.outputPane.WriteLine(ErrorHelper.GetExceptionDetailsText(e.Exception));
 }
Ejemplo n.º 7
0
 private void command_ExceptionLogged(object sender, NpmExceptionEventArgs e)
 {
     OnExceptionLogged(e.Exception);
 }