#if !BESTHTTP_DISABLE_SOCKETIO using System.Collections.Generic; namespace BestHTTP.SocketIO3 { /// /// Helper class to parse and hold handshake information. /// public sealed class HandshakeData { /// /// Session ID of this connection. /// public string Sid { get; private set; } /// /// List of possible upgrades. /// public List Upgrades { get; private set; } /// /// What interval we have to set a ping message. /// 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. /// public int PingTimeout { get; private set; } } } #endif