Page 2502 Extension Marketplace in 25

App
System Application
Namespace
System.Apps
Obsolete
Pending 24.0. This page will be obsoleted. Microsoft AppSource apps feature will replace the Extension Marketplace.

Procedures, 2

Versions171819202122232425262728latest

Source24252627

Source in 25

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

#if not CLEAN24
// ------------------------------------------------------------------------------------------------
// 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

Procedures, 2

NameParametersReturnsAccessObsolete
SetAppsourceUrl(Text)internal-
SetSearchText(Text)public-