c# で httpwebrequest を使用して Web サイトの応答時間をチェックし、ストップウォッチで時間を測定します。javascriptで時間をチェックするストップウォッチとしてウェブリクエストを行う方法と良い方法は?
これが私のc#サンプルです。
Uri URL = new Uri("http://www.example.com");
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(URL);
request.Timeout = 10000;
Stopwatch stopWatch = new Stopwatch();
stopWatch.Start();
HttpWebResponse response = (HttpWebResponse)request.GetResponse();
response.Close();
stopWatch.Stop();
int ms = stopWatch.Elapsed.Milliseconds;