Enum 8951 AFS Write, source in 28
Source242526272829metadata in 28
src/System Application/App/Azure File Services API/src/API Enums/AFSWrite.Enum.al30 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.Azure.Storage.Files;
/// <summary>
/// Describes possible values for the Write header.
/// </summary>
enum 8951 "AFS Write"
{
Access = Public;
Extensible = false;
/// <summary>
/// Indicates that the data should be updated.
/// </summary>
value(0; Update)
{
Caption = 'update', Locked = true;
}
/// <summary>
/// Indicates that the data should be cleared.
/// </summary>
value(1; Clear)
{
Caption = 'clear', Locked = true;
}
}