1234567891011121314151617181920212223242526 |
- 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";
- }
- }
|