IConsoleService.cs 352 B

123456789101112131415161718192021
  1. using System;
  2. namespace SRDebugger.Services
  3. {
  4. public interface IConsoleService
  5. {
  6. int ErrorCount { get; }
  7. int WarningCount { get; }
  8. int InfoCount { get; }
  9. IReadOnlyList<ConsoleEntry> Entries { get; }
  10. IReadOnlyList<ConsoleEntry> AllEntries { get; }
  11. event ConsoleUpdatedEventHandler Updated;
  12. void Clear();
  13. }
  14. }