Facebook.WebClientWrapper.DownloadData C# (CSharp) Method

DownloadData() public method

public DownloadData ( Uri address ) : byte[]
address System.Uri
return byte[]
        public byte[] DownloadData(Uri address)
        {
            try
            {
                return _webClient.DownloadData(address);
            }
            catch (WebException webException)
            {
                throw new WebExceptionWrapper(webException);
            }
        }