Enum 9353 Graph Request Header in 28

App
System Application
Namespace
System.Integration.Graph

Values, 5

Versions171819202122232425262728latest

Source242526272829

Source in 28

src/System Application/App/MicrosoftGraph/src/GraphRequestHeader.Enum.al54 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.Integration.Graph;

/// <summary>
/// The supported request header for the Microsoft Graph API
/// </summary>
enum 9353 "Graph Request Header"
{
    Access = Public;
    Extensible = false;

    /// <summary>
    /// If-Match Request Header
    /// </summary>
    value(0; "If-Match")
    {
        Caption = 'If-Match', Locked = true;
    }

    /// <summary>
    /// If-None-Match Request Header
    /// </summary>
    value(10; "If-None-Match")
    {
        Caption = 'If-None-Match', Locked = true;
    }

    /// <summary>
    /// Prefer Request Header
    /// </summary>
    value(20; Prefer)
    {
        Caption = 'Prefer', Locked = true;
    }

    /// <summary>
    /// ConsistencyLevel Request Header
    /// </summary>
    value(30; ConsistencyLevel)
    {
        Caption = 'ConsistencyLevel', Locked = true;
    }

    /// <summary>
    /// Range Request Header
    /// </summary>
    value(40; Range)
    {
        Caption = 'Range', Locked = true;
    }
}

Values, 5

IdNameObsolete
0If-Match-
10If-None-Match-
20Prefer-
30ConsistencyLevel-
40Range-