Exemplo n.º 1
0
 public void getSession()
 {
     if (Context.Session["cw"] == null)
     {
         Context.Session["cw"] = new CWebQQ();
     }
     cw = (CWebQQ)Context.Session["cw"];
 }
Exemplo n.º 2
0
        public override void OnStrategyStop()
        {
            cw.RevMsg -= cw_RevMsg;
            cw.Quit();

            cw = null;
            ce = null;
            ch = null;
        }
Exemplo n.º 3
0
        public override void OnStrategyStart()
        {
            //必须加,否则一切函数都不好使bbs.yiwowang.com
            CFun.I_LOVE_BBS("yiwowang.com");

            cw = new CWebQQ();
            ce = new CEncode();
            ch = new CHttpWeb();

            cw.RevMsg += cw_RevMsg;
            cw.SetHttpWeb(ch);
        }
Exemplo n.º 4
0
        public override void OnStrategyStop()
        {
            cw.RevMsg -= cw_RevMsg;
            cw.Quit();

            cw = null;
            ce = null;
            ch = null;
        }
Exemplo n.º 5
0
        public override void OnStrategyStart()
        {
            //必须加,否则一切函数都不好使bbs.yiwowang.com
            CFun.I_LOVE_BBS("yiwowang.com");

            cw = new CWebQQ();
            ce = new CEncode();
            ch = new CHttpWeb();

            cw.RevMsg += cw_RevMsg;
            cw.SetHttpWeb(ch);
        }
Exemplo n.º 6
0
 public void getSession()
 {
     if (Context.Session["cw"] == null) Context.Session["cw"] = new CWebQQ();
      cw = (CWebQQ)Context.Session["cw"];
 }