EntryWrittenEventHandler.cs 334 B

123456789101112131415161718192021
  1. //
  2. // System.Diagnostics.EntryWrittenEventHandler.cs
  3. //
  4. // Authors:
  5. // Jonathan Pryor ([email protected])
  6. //
  7. // (C) 2002
  8. //
  9. using System;
  10. using System.Diagnostics;
  11. using System.Runtime.InteropServices;
  12. namespace System.Diagnostics {
  13. public delegate void EntryWrittenEventHandler(
  14. object sender,
  15. EntryWrittenEventArgs e);
  16. }