Enum 3060 UriKind in 25
- App
- System Application
- Namespace
- System.Utilities
Versions171819202122232425262728latest
Source in 25
src/System Application/App/URI/src/UriKind.Enum.al38 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.Utilities;
/// <summary>
/// Defines the different kinds of URIs.
/// </summary>
/// <remarks>Visit https://learn.microsoft.com/en-us/dotnet/api/system.urikind for more information.</remarks>
enum 3060 UriKind
{
Access = Public;
Extensible = false;
/// <summary>
/// The URI kind is indeterminate.
/// </summary>
value(0; RelativeOrAbsolute)
{
Caption = 'RelativeOrAbsolute', Locked = true;
}
/// <summary>
/// The URI is absolute.
/// </summary>
value(1; Absolute)
{
Caption = 'Absolute', Locked = true;
}
/// <summary>
/// The URI is relative.
/// </summary>
value(2; Relative)
{
Caption = 'Relative', Locked = true;
}
}Values, 3
| Id | Name | Obsolete |
|---|---|---|
| 0 | RelativeOrAbsolute | - |
| 1 | Absolute | - |
| 2 | Relative | - |