IExceptionSource.cs 258 B

12345678910111213
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using SuperSocket.Common;
  6. namespace SuperSocket.SocketEngine
  7. {
  8. interface IExceptionSource
  9. {
  10. event EventHandler<ErrorEventArgs> ExceptionThrown;
  11. }
  12. }