Enum 1289 Http Request Type in 27

App
System Application
Namespace
System.Security.Authentication

Values, 7

Versions171819202122232425262728latest

Source242526272829

Source in 27

src/System Application/App/OAuth/src/HttpRequestType.Enum.al70 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.Security.Authentication;

/// <summary>
/// This enum contains the REST Http Request types.
/// </summary>
enum 1289 "Http Request Type"
{
    Extensible = true;

    /// <summary>
    /// Specifies that the Http request type is GET.
    /// </summary>
    value(0; GET)
    {
        Caption = 'GET', Locked = true;
    }

    /// <summary>
    /// Specifies that the Http request type is POST.
    /// </summary>
    value(1; POST)
    {
        Caption = 'POST', Locked = true;
    }

    /// <summary>
    /// Specifies that the Http request type is PATCH.
    /// </summary>
    value(2; PATCH)
    {
        Caption = 'PATCH', Locked = true;
    }

    /// <summary>
    /// Specifies that the Http request type is PUT.
    /// </summary>
    value(3; PUT)
    {
        Caption = 'PUT', Locked = true;
    }

    /// <summary>
    /// Specifies that the Http request type is DELETE.
    /// </summary>
    value(4; DELETE)
    {
        Caption = 'DELETE', Locked = true;
    }

    /// <summary>
    /// Specifies that the Http request type is HEAD.
    /// </summary>
    value(5; HEAD)
    {
        Caption = 'HEAD', Locked = true;
    }

    /// <summary>
    /// Specifies that the Http request type is OPTIONS.
    /// </summary>
    value(6; OPTIONS)
    {
        Caption = 'OPTIONS', Locked = true;
    }
}

Values, 7

IdNameObsolete
0GET-
1POST-
2PATCH-
3PUT-
4DELETE-
5HEAD-
6OPTIONS-