View Source
Class InstalledPackage
Inheritance
System.Object
Assembly: Umbraco.Core.dll
Syntax
[DataContract(Name = "installedPackage")]
public class InstalledPackage
Properties
View Source
HasMigrations
It the package contains any migrations at all
Declaration
[DataMember(Name = "hasMigrations")]
public bool HasMigrations { get; }
Property Value
Type |
Description |
System.Boolean |
|
View Source
HasPendingMigrations
If the package has any pending migrations to run
Declaration
[DataMember(Name = "hasPendingMigrations")]
public bool HasPendingMigrations { get; }
Property Value
Type |
Description |
System.Boolean |
|
View Source
PackageMigrationPlans
Declaration
[DataMember(Name = "plans")]
public IEnumerable<InstalledPackageMigrationPlans> PackageMigrationPlans { get; set; }
Property Value
View Source
PackageName
Declaration
[DataMember(Name = "name", IsRequired = true)]
[Required]
public string PackageName { get; set; }
Property Value
Type |
Description |
System.String |
|
View Source
PackageView
Declaration
[DataMember(Name = "packageView")]
public string PackageView { get; set; }
Property Value
Type |
Description |
System.String |
|
View Source
Version
Declaration
[DataMember(Name = "version")]
public string Version { get; set; }
Property Value
Type |
Description |
System.String |
|