private void StartPinger() { _pingFailCount = 0; _pinger = new Pinger(Id); _pingTimer = new Timer(this.PingPeer, this, PingIntervalMilliseconds, PingIntervalMilliseconds); }
private void StartCheckerForPings() { _lastPing = DateTime.Now.Ticks; _pingFailCount = 0; _pinger = new Pinger(Id); _pingTimer = new Timer(this.CheckForRecentPing, this, PingIntervalMilliseconds, PingIntervalMilliseconds); }