예제 #1
0
파일: HttpEx.cs 프로젝트: coolape/mibao
        public static byte[] readBytes(string url, byte[] data, int?timeout)
        {
            HttpWebResponse res = HttpEx.CreatePostHttpResponse(url, data, timeout);

            byte[] r2 = HttpEx.readBytes(res);
            res.Close();
            return(r2);
        }
예제 #2
0
파일: HttpEx.cs 프로젝트: coolape/mibao
        public static string readString(string url, byte[] data, int?timeout)
        {
            HttpWebResponse res = HttpEx.CreatePostHttpResponse(url, data, timeout);
            string          str = HttpEx.readString(res);

            res.Close();
            return(str);
        }