Enum 9353 Graph Request Header in 24
- App
- System Application
- Namespace
- System.Integration.Graph
Versions171819202122232425262728latest
Source in 24
src/System Application/App/MicrosoftGraph/src/GraphRequestHeader.Enum.al46 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;
}
}Values, 4
| Id | Name | Obsolete |
|---|---|---|
| 0 | If-Match | - |
| 10 | If-None-Match | - |
| 20 | Prefer | - |
| 30 | ConsistencyLevel | - |