Exemplo n.º 1
0
        public bool Test()
        {
            MyRequest reqCls = new MyRequest();
            reqCls.MyCert = _cert;

            string strPost = string.Format("cookies=0&username={0}&password={1}", _userName, _password);
            string body = reqCls.GoRequest(_url, MyRequest.HttpEnum.POST, strPost,true,_referer);

            if (!string.IsNullOrEmpty(reqCls.LastError)) { return false; }
            return true;
        }
Exemplo n.º 2
0
        public bool Test()
        {
            MyRequest reqCls = new MyRequest();
            //string strPost = string.Format("username={0}&password={1}", _userName, _password);
            string strPost =@"{""cookie"":0,""username"":""admin"",""password"":""12345678!""}";
            string body = reqCls.GoRequest(_url, MyRequest.HttpEnum.POST, strPost,true,_referer);
            //string body = reqCls.GoRequest(_url, MyRequest.HttpEnum.GET, "");

            if (!string.IsNullOrEmpty(reqCls.LastError)) { return false; }
            return true;
        }
Exemplo n.º 3
0
        public bool Test()
        {
            MyRequest reqCls = new MyRequest();

            reqCls.MyCert = _cert;

            string strPost = string.Format("cookies=0&username={0}&password={1}", _userName, _password);
            string body    = reqCls.GoRequest(_url, MyRequest.HttpEnum.POST, strPost, true, _referer);

            if (!string.IsNullOrEmpty(reqCls.LastError))
            {
                return(false);
            }
            return(true);
        }
Exemplo n.º 4
0
        public bool Test()
        {
            MyRequest reqCls = new MyRequest();
            //string strPost = string.Format("username={0}&password={1}", _userName, _password);
            string strPost = @"{""cookie"":0,""username"":""admin"",""password"":""12345678!""}";
            string body    = reqCls.GoRequest(_url, MyRequest.HttpEnum.POST, strPost, true, _referer);

            //string body = reqCls.GoRequest(_url, MyRequest.HttpEnum.GET, "");

            if (!string.IsNullOrEmpty(reqCls.LastError))
            {
                return(false);
            }
            return(true);
        }