Codeunit 9457 File Pagination Data Impl. in 26
- App
- System Application
- Namespace
- System.ExternalFileStorage
Versions171819202122232425262728latest
Source in 26
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
| Name | Parameters | Returns | Access | Obsolete |
|---|---|---|---|---|
| SetMarker | (Text) | public | - | |
| GetMarker | () | Text | public | - |
| SetEndOfListing | (Boolean) | public | - | |
| IsEndOfListing | () | Boolean | public | - |