IEventWriter.cs 270 B

12345678910111213
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.Diagnostics;
  5. namespace winsw.Util
  6. {
  7. public interface IEventWriter
  8. {
  9. void LogEvent(String message);
  10. void LogEvent(String message, EventLogEntryType type);
  11. }
  12. }