Guest User

Untitled

a guest
Jun 25th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. public bool DownloadFeed()
  2. {
  3. string user = "xxx";
  4. string password = "pwd";
  5.  
  6. WebClient web = new WebClient();
  7. System.Net.WebClient wc = new System.Net.WebClient();
  8. wc.Credentials = new System.Net.NetworkCredential(user, password);
  9. System.Net.ServicePointManager.SecurityProtocol = System.Net.SecurityProtocolType.Ssl3 | SecurityProtocolType.Tls | SecurityProtocolType.Tls11 | SecurityProtocolType.Tls12;
  10. wc.DownloadFile(@"https://Entered RSS Feed URL here",
  11. @"H:importTest.xml");
  12. return true;
  13.  
  14. }
Add Comment
Please, Sign In to add comment