Enum 7568 Geolocation Status in 28

App
System Application
Namespace
System.Device

Values, 4

Versions171819202122232425262728latest

Source242526272829

Source in 28

src/System Application/App/Geolocation/src/GeolocationStatus.Enum.al46 lines, Copyright (c) Microsoft Corporation. MIT

// ------------------------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
// ------------------------------------------------------------------------------------------------

namespace System.Device;

/// <summary>
/// Specifies the status of the geographical location data.
/// </summary>
enum 7568 "Geolocation Status"
{
    Extensible = false;

    /// <summary>
    /// Available
    /// </summary>
    value(0; Available)
    {
        Caption = 'Available';
    }

    /// <summary>
    /// No data (no data could be obtained).
    /// </summary>
    value(1; "No Data")
    {
        Caption = 'No Data';
    }

    /// <summary>
    /// Timed out (location information not obtained in due time).
    /// </summary>
    value(2; "Timed Out")
    {
        Caption = 'Timed Out';
    }

    /// <summary>
    /// Not available (for example user denied app access to location).
    /// </summary>
    value(3; "Not Available")
    {
        Caption = 'Not Available';
    }
}

Values, 4

IdNameObsolete
0Available-
1No Data-
2Timed Out-
3Not Available-