Try to download an image using follow code:
using (WebClient c = new WebClient())
{
byte[] responseData = c.DownloadData(imageFileUrl);
//.....
}
And get the following exception:
The remote server returned an error: (403) Forbidden.
at System.Net.WebClient.DownloadDataInternal(Uri address, WebRequest& request)
at System.Net.WebClient.DownloadData(Uri address)