123456789101112131415161718192021222324252627282930 |
- using SocketIOClient.Transport;
- using System.Collections.Generic;
- namespace SocketIOClient.Messages
- {
- public interface IMessage
- {
- MessageType Type { get; }
- List<byte[]> OutgoingBytes { get; set; }
- List<byte[]> IncomingBytes { get; set; }
- int BinaryCount { get; }
- int Eio { get; set; }
- TransportProtocol Protocol { get; set; }
- void Read(string msg);
- //void Eio3WsRead(string msg);
- //void Eio3HttpRead(string msg);
- string Write();
- //string Eio3WsWrite();
- }
- }
|