When creating an instance of the WebClient class and when trying to download a file at the specified URL, with the specified path of the folder where you want to save the file, an error occurs: Unhandled exception. System.Net.WebException: An exception occurred during a WebClient request.
static public void DownloadFile()
{
WebClient WebClient = new WebClient();
WebClient.DownloadFile(Config.URL, Config.ImageLink);
}