using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Net; using System.Security.Authentication; namespace SuperSocket.SocketBase { /// /// Listener inforamtion /// [Serializable] public class ListenerInfo { /// /// Gets or sets the listen endpoint. /// /// /// The end point. /// public IPEndPoint EndPoint { get; set; } /// /// Gets or sets the listen backlog. /// /// /// The back log. /// public int BackLog { get; set; } /// /// Gets or sets the security protocol. /// /// /// The security. /// public SslProtocols Security { get; set; } } }