Ejemplo n.º 1
0
        private void NewBeacon(BeaconLocation newBeacon)
        {
            var newBeacons = _currentBeacons
                             .Where(_ => !_.Equals(newBeacon))
                             .Concat(new [] { newBeacon })
                             .OrderBy(_ => _.Data)
                             .ThenBy(_ => _.Address, IpEndPointComparer.Instance)
                             .ToList();
            var u = BeaconsUpdated;

            u?.Invoke(newBeacons);
            _currentBeacons = newBeacons;
        }
Ejemplo n.º 2
0
 protected bool Equals(BeaconLocation other)
 {
     return(Equals(Address, other.Address));
 }