Enum 3062 Uri Query Duplicate Behaviour in 25
- App
- System Application
- Namespace
- System.Utilities
Versions171819202122232425262728latest
Source in 25
src/System Application/App/URI/src/UriQueryDuplicateBehaviour.Enum.al50 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>
/// Specifies the behaviour when adding a new query parameter or flag to a URI.
/// </summary>
enum 3062 "Uri Query Duplicate Behaviour"
{
Extensible = false;
/// <summary>
/// Skips adding the value if the same flag or parameter already exists.
/// </summary>
/// <example>Adding "foo=bar" to "https://microsoft.com?foo=goofy" and using this option results in "https://microsoft.com?foo=goofy".</example>
value(1; Skip)
{
Caption = 'Skip';
}
/// <summary>
/// Keeps the new value (overwrites all existing matching flags or parameters).
/// </summary>
/// <example>Adding "foo=bar" to "https://microsoft.com?foo=goofy" and using this option results in "https://microsoft.com?foo=bar".</example>
value(2; "Overwrite All Matching")
{
Caption = 'Overwrite All Matching';
}
/// <summary>
/// Keeps both the existing values and the new value.
/// </summary>
/// <example>Adding "foo=bar" to "https://microsoft.com?foo=goofy" and using this option results in "https://microsoft.com?foo=goofy&foo=bar".</example>
value(3; "Keep All")
{
Caption = 'Keep All';
}
/// <summary>
/// Throws an error if the flag or parameter already exists.
/// </summary>
/// <example>Adding "foo=bar" to "https://microsoft.com?foo=goofy" and using this option results in an error.</example>
value(4; "Throw Error")
{
Caption = 'Throw Error';
}
}Values, 4
| Id | Name | Obsolete |
|---|---|---|
| 1 | Skip | - |
| 2 | Overwrite All Matching | - |
| 3 | Keep All | - |
| 4 | Throw Error | - |