Page 2502 Extension Marketplace, source in 27

Source24252627metadata in 27

src/System Application/App/Extension Management/src/ExtensionMarketplace.Page.al44 lines, Copyright (c) Microsoft Corporation. MIT

#if not CLEAN25
// ------------------------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
// ------------------------------------------------------------------------------------------------

namespace System.Apps;

using System.Integration;

/// <summary>
/// Shows the Extension Marketplace.
/// </summary>
page 2502 "Extension Marketplace"
{
    Caption = 'Extension Marketplace';
    PageType = Card;
    ApplicationArea = All;
    Editable = false;
    ObsoleteState = Pending;
    ObsoleteReason = 'This page will be obsoleted. Microsoft AppSource apps feature will replace the Extension Marketplace.';
    ObsoleteTag = '24.0';

    layout
    {
        area(Content)
        {
            usercontrol(Marketplace; WebPageViewer)
            {
                ApplicationArea = Basic, Suite;
                Visible = false;
            }
        }
    }

    procedure SetSearchText(Text: Text)
    begin
    end;

    internal procedure SetAppsourceUrl(Url: Text)
    begin
    end;
}
#endif