mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-13 13:44:57 +00:00
27 lines
560 B
C#
27 lines
560 B
C#
using SocketIOClient.Transport;
|
|
using System.Collections.Generic;
|
|
|
|
namespace SocketIOClient.Messages
|
|
{
|
|
public class PingMessage : IMessage
|
|
{
|
|
public MessageType Type => MessageType.Ping;
|
|
|
|
public List<byte[]> OutgoingBytes { get; set; }
|
|
|
|
public List<byte[]> IncomingBytes { get; set; }
|
|
|
|
public int BinaryCount { get; }
|
|
|
|
public int Eio { get; set; }
|
|
|
|
public TransportProtocol Protocol { get; set; }
|
|
|
|
public void Read(string msg)
|
|
{
|
|
}
|
|
|
|
public string Write() => "2";
|
|
}
|
|
}
|