I'm periodically (every 100 ms) trigger:
new Ping().SendPingAsync(ip, 200, new byte[1472], new PingOptions(64, true))
After some requests, I stop the sending and await
all Task<PingReply>
for Status
evaluation of PingReply
. Some Request fail with IPStatus.TimedOut
, even though I see all responses at Wireshark. Further investigation showed, that those Tasks ran to completion. But their overall time to complete was only around 4 ms. Would have expected at least a time of 200 ms. So requests and responses are at the NIC, but returned PingReply is not correct/timeout is not working... Any Idea?