Enum 7568 Geolocation Status in 28
- App
- System Application
- Namespace
- System.Device
Versions171819202122232425262728latest
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
| Id | Name | Obsolete |
|---|---|---|
| 0 | Available | - |
| 1 | No Data | - |
| 2 | Timed Out | - |
| 3 | Not Available | - |