Cirrious.MvvmCross.Plugins.Location.Droid.MvxAndroidGeoLocationWatcher.EnsureStopped C# (CSharp) 메소드

EnsureStopped() 개인적인 메소드

private EnsureStopped ( ) : void
리턴 void
        private void EnsureStopped()
        {
            if (_locationManager != null)
            {
                _locationManager.RemoveUpdates(_locationListener);
                _locationManager = null;
            }
        }