Skip to content

Latest commit

 

History

History
65 lines (38 loc) · 1.66 KB

File metadata and controls

65 lines (38 loc) · 1.66 KB
title description author ms.author ms.topic ms.date ms.reviewer audience ms.search.region
Application type
Learn about the application type, which represents a runtime instance of an application, including the minVersion property and appInit method.
jasongre
jasongre
article
05/24/2022
johnmichalak
Developer
Global

Application type

[!include banner] [!include mobile app deprecated]

Represents a runtime instance of an application.

Hierarchy

Application

Index

Properties

Methods

Properties

minVersion

minVersion: string (optional)

An optional marker to indicate the minimum platform version required by this component. When this is specified and the component is attempted to be loaded in an older version of the platform, the corresponding workspace is not loaded and user is directed to install a newer version of the platform.

Methods

appInit

appInit(metadata: ApplicationMetadata): any

This method is invoked at the point the application is about to run, with the instance of the application metadata loaded. The metadata passed in can be still modified to change behaviors before this method returns.

Parameters

Name Type Description
metadata ApplicationMetadata

Returns any

[!INCLUDEfooter-include]