Example #1
0
 protected Dispatcher(ConsoleDispatcher parentDispatcher)
 {
     ParentDispatcher = parentDispatcher;
     WpfConsole       = parentDispatcher.WpfConsole;
 }
Example #2
0
 public SyncHostConsoleDispatcher(ConsoleDispatcher parentDispatcher)
     : base(parentDispatcher)
 {
 }
Example #3
0
 public AsyncHostConsoleDispatcher(ConsoleDispatcher parentDispatcher)
     : base(parentDispatcher)
 {
     _marshaler = new Marshaler(this);
 }