using SocketIOClient.Transport; using System.Collections.Generic; namespace SocketIOClient.Messages { public interface IMessage { MessageType Type { get; } List OutgoingBytes { get; set; } List 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(); } }