Enum 8952 AFS File Last Write Time, source in 24
Source242526272829metadata in 24
src/System Application/App/Azure File Services API/src/API Enums/AFSFileLastWriteTime.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 File Last Write Time header.
/// </summary>
enum 8952 "AFS File Last Write Time"
{
Access = Public;
Extensible = false;
/// <summary>
/// The file last write time is set to the current time.
/// </summary>
value(0; Now)
{
Caption = 'now', Locked = true;
}
/// <summary>
/// The file last write time is preserved.
/// </summary>
value(1; Preserve)
{
Caption = 'preserve', Locked = true;
}
}