LumiSoft.Net.SocketServer.SocketServer C# (CSharp) Method

SocketServer() public method

Default constructor.
public SocketServer ( ) : System
return System
        public SocketServer()
        {
            m_pSessions          = new Hashtable();
            m_pQueuedConnections = new ArrayList();
            m_pTimer             = new System.Timers.Timer(15000);
            m_pIPEndPoint        = new IPEndPoint(IPAddress.Any,25);
            m_HostName           = System.Net.Dns.GetHostName();

            m_pTimer.AutoReset = true;
            m_pTimer.Elapsed += new System.Timers.ElapsedEventHandler(this.m_pTimer_Elapsed);
        }
SocketServer