Thời gian ping mặc định là bao nhiêu? Tôi sử dụng mã dưới đây để gửi ping tới các thiết bị tcp. Khi nào thì IPStatus rơi vào thời gian chờ?Thời gian chờ ping mặc định
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);
}
}
Cảm ơn bạn.
bạn đã đo lường cái gì? – GolezTrol