using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Net; namespace SuperSocket.SocketBase { /// /// The basic session interface /// public interface ISessionBase { /// /// Gets the session ID. /// string SessionID { get; } /// /// Gets the remote endpoint. /// IPEndPoint RemoteEndPoint { get; } } }