Enum 2350 Http Method in 24
- App
- System Application
- Namespace
- System.RestClient
Versions171819202122232425262728latest
Source in 24
src/System Application/App/Rest Client/src/HttpMethod.Enum.al69 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.RestClient;
/// <summary>
/// This enum contains the REST Http Methods.
/// </summary>
enum 2350 "Http Method"
{
Extensible = true;
/// <summary>
/// Specifies that the Http method is GET.
/// </summary>
value(0; GET)
{
Caption = 'GET', Locked = true;
}
/// <summary>
/// Specifies that the Http method is POST.
/// </summary>
value(1; POST)
{
Caption = 'POST', Locked = true;
}
/// <summary>
/// Specifies that the Http method is PATCH.
/// </summary>
value(2; PATCH)
{
Caption = 'PATCH', Locked = true;
}
/// <summary>
/// Specifies that the Http method is PUT.
/// </summary>
value(3; PUT)
{
Caption = 'PUT', Locked = true;
}
/// <summary>
/// Specifies that the Http method is DELETE.
/// </summary>
value(4; DELETE)
{
Caption = 'DELETE', Locked = true;
}
/// <summary>
/// Specifies that the Http method is HEAD.
/// </summary>
value(5; HEAD)
{
Caption = 'HEAD', Locked = true;
}
/// <summary>
/// Specifies that the Http method is OPTIONS.
/// </summary>
value(6; OPTIONS)
{
Caption = 'OPTIONS', Locked = true;
}
}Values, 7
| Id | Name | Obsolete |
|---|---|---|
| 0 | GET | - |
| 1 | POST | - |
| 2 | PATCH | - |
| 3 | PUT | - |
| 4 | DELETE | - |
| 5 | HEAD | - |
| 6 | OPTIONS | - |