Files
Electron.NET/ElectronNET.API/SocketIO/Messages/IMessage.cs
2022-07-14 16:53:54 +02:00

31 lines
571 B
C#

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();
}
}