mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-14 05:34:48 +00:00
30 lines
622 B
C#
30 lines
622 B
C#
using SocketIOClient.Transport;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace SocketIOClient.Messages
|
|
{
|
|
public class PongMessage : IMessage
|
|
{
|
|
public MessageType Type => MessageType.Pong;
|
|
|
|
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 TimeSpan Duration { get; set; }
|
|
|
|
public void Read(string msg)
|
|
{
|
|
}
|
|
|
|
public string Write() => "3";
|
|
}
|
|
}
|