#if !BESTHTTP_DISABLE_SOCKETIO
using System.Collections.Generic;
namespace BestHTTP.SocketIO3
{
///
/// Helper class to parse and hold handshake information.
///
[PlatformSupport.IL2CPP.Preserve]
public sealed class HandshakeData
{
///
/// Session ID of this connection.
///
[PlatformSupport.IL2CPP.Preserve]
public string Sid { get; private set; }
///
/// List of possible upgrades.
///
[PlatformSupport.IL2CPP.Preserve]
public List Upgrades { get; private set; }
///
/// What interval we have to set a ping message.
///
[PlatformSupport.IL2CPP.Preserve]
public int PingInterval { get; private set; }
///
/// What time have to pass without an answer to our ping request when we can consider the connection disconnected.
///
[PlatformSupport.IL2CPP.Preserve]
public int PingTimeout { get; private set; }
}
}
#endif