You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
345 B

  1. #if !NET20
  2. namespace Apewer.WebSocket
  3. {
  4. /// <summary></summary>
  5. public delegate void SocketEvent(Connection socket);
  6. /// <summary></summary>
  7. public delegate void SocketEvent<T>(Connection socket, T argument);
  8. /// <summary></summary>
  9. public delegate void ServerEvent<T>(GenericServer server, T argument);
  10. }
  11. #endif