public INOUTHandler(ConnectionWaiter parentRW, HttpListenerContext hlc)
 {
     tIOWriteTimer = new System.Threading.Timer(WriteTimerTick, this, 1250, 1250);
     WebPageParser = new PageParser(this);
     hlcIO         = hlc;
     parent        = parentRW;
 }
Пример #2
0
        public WSINOUTHandler(ConnectionWaiter parentRW, HttpListenerContext hlc, ServerFrm frm)
        {
            UserAgent     = hlc.Request.UserAgent;
            Frm           = frm;
            tIOWriteTimer = new System.Threading.Timer(wsWriteTimerTick, this, 1000, 1250);

            hlcIO    = hlc;
            ParentCW = parentRW;
        }