Example #1
0
 static void DownloadRecipe_help(CWebClient wc, string url, string file)
 {
     wc.DownloadFile(url, file);
 }
Example #2
0
        public static void DownloadRecipe(string url, string file, string cookieFile)
        {
            CWebClient wc = new CWebClient(cookieFile);

            DownloadRecipe_help(wc, url, file);
        }