Enum 8953 AFS Property in 24

App
System Application
Namespace
System.Azure.Storage.Files

Values, 4

Versions171819202122232425262728latest

Source242526272829

Source in 24

src/System Application/App/Azure File Services API/src/API Enums/AFSProperty.Enum.al44 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 of the additional AFS properties.
/// </summary>
enum 8953 "AFS Property"
{
    Access = Public;
    Extensible = false;

    /// <summary>
    /// Indicates the the Timestamps should be included in the response.
    /// </summary>
    value(0; Timestamps)
    {
        Caption = 'Timestamps', Locked = true;
    }
    /// <summary>
    /// Indicates the the ETag should be included in the response.
    /// </summary>
    value(1; ETag)
    {
        Caption = 'ETag', Locked = true;
    }
    /// <summary>
    /// Indicates the the Attributes should be included in the response.
    /// </summary>
    value(2; Attributes)
    {
        Caption = 'Attributes', Locked = true;
    }
    /// <summary>
    /// Indicates the the PermissionKey should be included in the response.
    /// </summary>
    value(3; PermissionKey)
    {
        Caption = 'PermissionKey', Locked = true;
    }
}

Values, 4

IdNameObsolete
0Timestamps-
1ETag-
2Attributes-
3PermissionKey-