我试图找到我的一些代理的表现.我在.net中尝试过Ping类,但不接受端口.有没有办法检查httpwebrequest的响应需要多长时间?
解决方法
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(myUri); System.Diagnostics.Stopwatch timer = new Stopwatch(); timer.Start(); HttpWebResponse response = (HttpWebResponse)request.GetResponse(); response.Close (); timer.Stop(); TimeSpan tiMetaken = timer.Elapsed;