用C#测量互联网连接丢失时间

时间:2014-07-02 09:25:54

标签: c# performance time timer network-connection

我想在我的应用程序运行时检查我的互联网连接是否丢失,并测量任何丢失的持续时间。为此,我使用下面的代码:

try
        {
            using (var client = new WebClient())
            using (var stream = client.OpenRead("http://www.google.com"))
            {
                //Doing something when connection running
            }
        }
        catch
        {
            //Doing something when connection lost
        }

有没有人知道如何使用此代码编写日志文件来测量我的连接丢失时间(格式:日:分:秒)?

1 个答案:

答案 0 :(得分:1)

您可以使用

检查互联网连接
System.Net.NetworkInformation.NetworkInterface.GetIsNetworkAvailable()

如果您想测量时间损失,那么您可以在项目中包含计时器控制

timer1.Enabled=true;
timer1.Interval=1000;
int count=0;

private void timer1_tick(object sender,Eventargs e)
{
    if(System.Net.NetworkInformation.NetworkInterface.GetIsNetworkAvailable()==false)
    {
        count++;
    }
}

此计数将以秒为单位返回时间损失。