Beispiel #1
0
        private static long DealResponseBody(ResponseBody body)
        {
            Stream inputStream = body.ByteStream();

            byte[] result    = new byte[1000];
            long   readBytes = 0;

            readBytes = inputStream.Read(result);
            return(readBytes);
        }