0

I'm currently writing a WebMatrix extension for version 2.0. I have a process I want to execute and have the output stream to an output pane, and have errors parsed to the error list. Any way to do this automatically, or access the Error List through an object model? Can't find anything in documentation or with ILSpy on Microsoft.WebMatrix.Extensibility assembly.

If this would not work, the only "workarround" I see is to open a XAML window, and redirect the output from the process to this window. This window could have an error list included as well. Any ideas?

Serge van den Oever
  • 4,340
  • 8
  • 45
  • 66

1 Answers1

0

Sadly, right now there isn't a way to get access to the error list through the SDK (we're working on that). One thing you can do is create your own tab down in the task panel and pipe your errors to that. Have a look at the example of adding/managing a tab in the task panel.

Specifically, check out WebMatrixExtension.cs.

Hopefully this helps!

Adi Lester
  • 24,731
  • 12
  • 95
  • 110
Justin Beckwith
  • 7,686
  • 1
  • 33
  • 55