11

ping的默认时间是多少?我使用下面的代码将 ping 发送到 tcp 设备。IPStatus 何时会超时?

private static void ApplyPing(Topology.Runtime rt)
{
    try
    {
        if (rt.TcpClient != null)
        {
            string ip = rt.Ip;
            if (new Ping().Send(ip).Status != IPStatus.Success)
            {
                Service.WriteEventLog(string.Format("{0} ping error.", ip), EventLogEntryType.Warning);
                rt.Disconnect();
            }
        }
    }
    catch (ArgumentNullException ex)
    { 

    }
    catch (Exception ex)
    {
        Service.WriteEventLog(ex, EventLogEntryType.Error);
    }
}

谢谢你。

4

1 回答 1

23

来自 MSDN这里这里

该方法等待 ICMP 回显回复消息五秒钟。如果在该时间内未收到回复,则该方法返回并将 Status 属性设置为 TimedOut。

如果我们检查反射器,我们确实会看到:

public PingReply Send(string hostNameOrAddress)
{
    return this.Send(hostNameOrAddress, 5000, this.DefaultSendBuffer, null);
}
于 2013-06-18T07:14:32.803 回答