1
Reply

http send get request with parameter

tarun janveja

tarun janveja

Aug 9 2017 1:46 AM
172
calling url using httpclient as httpwebrequest works slowly after 1 lac request,please help me and i need to send 6-7 lkh get request to end user.currently i am using below
method

WebRequest request = WebRequest.Create(URL);

WebResponse response = request.GetResponse();

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

response.Close();

Answers (1)