Codeunit 9457 File Pagination Data Impl. in 28

App
System Application
Namespace
System.ExternalFileStorage

Procedures, 4

Versions171819202122232425262728latest

Source26272829

Source in 28

src/System Application/App/External File Storage/src/Lookup/FilePaginationDataImpl.Codeunit.al38 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.ExternalFileStorage;

codeunit 9457 "File Pagination Data Impl."
{
    Access = Internal;
    InherentPermissions = X;
    InherentEntitlements = X;

    var
        EndOfListing: Boolean;
        Marker: Text;

    procedure SetMarker(NewMarker: Text)
    begin
        Marker := NewMarker;
    end;

    procedure GetMarker(): Text
    begin
        exit(Marker);
    end;

    procedure SetEndOfListing(NewEndOfListing: Boolean)
    begin
        EndOfListing := NewEndOfListing;
    end;

    procedure IsEndOfListing(): Boolean
    begin
        exit(EndOfListing);
    end;
}

Procedures, 4

NameParametersReturnsAccessObsolete
SetMarker(Text)public-
GetMarker()Textpublic-
SetEndOfListing(Boolean)public-
IsEndOfListing()Booleanpublic-