Class AppMetadata
App/solution metadata for apps stored in the corporate catalog
Inheritance
System.Object
AppMetadata
Namespace: PnP.Framework.ALM
Assembly: PnP.Framework.dll
Syntax
public class AppMetadata : object
Properties
AppCatalogVersion
Returns version of the app / solution int the app catalog.
Declaration
public Version AppCatalogVersion { get; set; }
Property Value
Version
|
CanUpgrade
Returns whether an existing instance of an app/solution can be upgraded. True if there's newer version available in app catalog compared to instance in site.
Declaration
public bool CanUpgrade { get; set; }
Property Value
System.
|
Deployed
Returns whether app/solution has been deployed to the context site. True if particular app/solution has been installed to the site.
Declaration
public bool Deployed { get; set; }
Property Value
System.
|
Id
Unique ID of the library list item of the app/solution.
Declaration
public Guid Id { get; set; }
Property Value
Guid
|
InstalledVersion
Returns version of the installed app/solution in the site context.
Declaration
public Version InstalledVersion { get; set; }
Property Value
Version
|
IsClientSideSolution
Returns wheter app/solution is SharePoint Framework client-side solution. True for SPFx, False for app/add-in.
Declaration
public bool IsClientSideSolution { get; set; }
Property Value
System.
|
Title
Title of the solution
Declaration
public string Title { get; set; }
Property Value
System.
|