Shrooms

Untitled

Nov 8th, 2015
195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. 1. http://www.youtube-mp3.org/
  2.  
  3. 2. WebClient webClient = new WebClient();
  4. webClient.Proxy = null;
  5. webClient.UseDefaultCredentials = true;
  6. webClient.DownloadFileCompleted += new AsyncCompletedEventHandler(Complete);
  7. webClient.DownloadProgressChanged += new DownloadProgressChangedEventHandler(Progress);
  8. webClient.DownloadFileAsync(new Uri(_url), _root + _name + ".mp3");
  9.  
  10. 3. The above gets me 403 FORBIDDEN ERROR as it somehow still doesn't download....
  11.  
  12. Is it detecting that I am using webclient?
Advertisement
Add Comment
Please, Sign In to add comment