IMHandler.cs 192 B

123456789101112
  1. using System;
  2. namespace ET
  3. {
  4. public interface IMHandler
  5. {
  6. void Handle(Session session, object message);
  7. Type GetMessageType();
  8. Type GetResponseType();
  9. }
  10. }