In the future, I will answer my question. Although the suggested answer with the registrar may work, I found a better (IMO) and much simpler approach:
var waiting = new Stopwatch();
var contentDownload = new Stopwatch();
waiting.Start();
using (var webResponse = (HttpWebResponse)webRequest.GetResponse())
{
waiting.Stop();
contentDownload.Start();
using (var reader = new StreamReader(webResponse.GetResponseStream()))
{
var body = reader.ReadToEnd();
contentDownload.Stop();
}
}
, . GetResponse
Chrome, GetResponseStream
+ ReadToEnd
.
GET ( ). Request Sent , .