Catel.Services.Test.LocationService.OnLocationChanged C# (CSharp) Method

OnLocationChanged() private method

Called when the current location has changed.
private OnLocationChanged ( ) : void
return void
        private void OnLocationChanged()
        {
            if (LocationChanged != null)
            {
                ILocation currentLocation = GetCurrentLocation();
                LocationChanged(this, new LocationChangedEventArgs(currentLocation));
            }
        }