tarun janveja

tarun janveja

  • NA
  • 242
  • 35.8k

HTTP WEB REQUEST

Aug 15 2017 7:19 AM
Hi,
 
i am using below method to send request to 3 party.it takes about 5 minutes to proces 1000 request .can you please provide me some better method as i used to send 5-7 lac request to 3 party due to which request is getting delayed.
 
 
WebRequest request = WebRequest.Create(URL);

WebResponse response = request.GetResponse();

new StreamReader(response.GetResponseStream()).ReadToEnd();

response.Close(); 

Answers (7)