mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-20 21:53:18 +00:00
31 lines
571 B
C#
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();
|
|||
|
|
}
|
|||
|
|
}
|