What is the ReadWriteTimeout alternative for Httpclient

I recently switched to HttpClient from HttpWebRequest and it seems that the HttpClient only has the usual timeout property. I cannot find any property that represents the read / write timeout. I can't find it even in the HttpClientHandler. Thank!

+3


source to share


1 answer


The purpose of the class HttpClient

is to provide a higher level of functionality for ease of use. If you want more granular functionality, you need to use lower level classes such as HttpWebRequest

.



+2


source







All Articles