Catel.Services.LocationServiceBase.Start C# (CSharp) Method

Start() public method

Starts the location service so it's retrieving data.
public Start ( ) : bool
return bool
        public bool Start()
        {
            Log.Info("Starting LocationService");

            var result = StartSensor();
            if (result)
            {
                Log.Info("Started LocationService");
            }
            else
            {
                Log.Info("Failed to start LocationService");
            }

            return result;
        }