/csharp/Anaida/IWebSocketListener.cs

# · C# · 18 lines · 13 code · 5 blank · 0 comment · 0 complexity · 8ca216ae11cab77ef08ca70eea356e56 MD5 · raw file

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Anaida
  6. {
  7. public interface IWebSocketListener
  8. {
  9. void Onopen();
  10. void Onclose();
  11. void Onmessage(byte[] message);
  12. }
  13. }