Table 8951 AFS Handle in 24

App
System Application
Namespace
System.Azure.Storage.Files

Fields, 10Keys, 1

Versions171819202122232425262728latest

Source242526272829

Source in 24

src/System Application/App/Azure File Services API/src/AFSHandle.Table.al71 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>
/// Holds information about file handles that are currently open.
/// </summary>
table 8951 "AFS Handle"
{
    Access = Public;
    InherentEntitlements = X;
    InherentPermissions = X;
    Extensible = false;
    TableType = Temporary;

    fields
    {
        field(1; "Entry No."; Integer)
        {
            Caption = 'Entry No.';
        }
        field(10; "Handle ID"; Text[50])
        {
            Caption = 'HandleId';
        }
        field(11; Path; Text[2048])
        {
            Caption = 'Path';
        }
        field(12; "Client IP"; Text[2048])
        {
            Caption = 'ClientIp';
            DataClassification = EndUserPseudonymousIdentifiers;
        }
        field(13; "Open Time"; DateTime)
        {
            Caption = 'OpenTime';
        }
        field(14; "Last Reconnect Time"; DateTime)
        {
            Caption = 'LastReconnectTime';
        }
        field(15; "File ID"; Text[50])
        {
            Caption = 'FileId';
        }
        field(16; "Parent ID"; Text[50])
        {
            Caption = 'ParentId';
        }
        field(17; "Session ID"; Text[50])
        {
            Caption = 'SessionId';
        }
        field(20; "Next Marker"; Text[2048])
        {
            Caption = 'NextMarker';
        }
    }

    keys
    {
        key(PK; "Entry No.")
        {
            Clustered = true;
        }
    }
}

Fields, 10

IdNameTypeObsolete
1Entry No.Integer-
10Handle IDText[50]-
11PathText[2048]-
12Client IPText[2048]-
13Open TimeDateTime-
14Last Reconnect TimeDateTime-
15File IDText[50]-
16Parent IDText[50]-
17Session IDText[50]-
20Next MarkerText[2048]-

Keys, 1

NameFieldsObsolete
PK, clusteredEntry No.-