Ada.Questions.SeApiAccessor.SendReq C# (CSharp) Method

SendReq() private static method

private static SendReq ( string url ) : string
url string
return string
        private static string SendReq(string url)
        {
            var bytes = new WebClient().DownloadData(url);
            var unzippedBytes = GZipDecompress(bytes);

            return Encoding.UTF8.GetString(unzippedBytes);
        }