Class PackageManifest
Represents the content of a package manifest.
Inheritance
Namespace: Umbraco.Cms.Core.Manifest
Assembly: Umbraco.Core.dll
Syntax
[DataContract]
public class PackageManifest
Properties
View SourceAllowPackageTelemetry
Gets or sets a value indicating whether telemetry is allowed
Declaration
[DataMember(Name = "allowPackageTelemetry")]
public bool AllowPackageTelemetry { get; set; }
Property Value
Type | Description |
---|---|
System. |
BundleOptions
Declaration
[DataMember(Name = "bundleOptions")]
public BundleOptions BundleOptions { get; set; }
Property Value
Type | Description |
---|---|
Bundle |
ContentApps
Gets or sets the content apps listed in the manifest.
Declaration
[DataMember(Name = "contentApps")]
public ManifestContentAppDefinition[] ContentApps { get; set; }
Property Value
Type | Description |
---|---|
Manifest |
Dashboards
Gets or sets the dashboards listed in the manifest.
Declaration
[DataMember(Name = "dashboards")]
public ManifestDashboard[] Dashboards { get; set; }
Property Value
Type | Description |
---|---|
Manifest |
GridEditors
Gets or sets the grid editors listed in the manifest.
Declaration
[DataMember(Name = "gridEditors")]
public GridEditor[] GridEditors { get; set; }
Property Value
Type | Description |
---|---|
Grid |
PackageName
An optional package name. If not specified then the directory name is used.
Declaration
[DataMember(Name = "name")]
public string PackageName { get; set; }
Property Value
Type | Description |
---|---|
System. |
PackageView
Declaration
[DataMember(Name = "packageView")]
public string PackageView { get; set; }
Property Value
Type | Description |
---|---|
System. |
ParameterEditors
Gets or sets the parameter editors listed in the manifest.
Declaration
[DataMember(Name = "parameterEditors")]
public IDataEditor[] ParameterEditors { get; set; }
Property Value
Type | Description |
---|---|
IData |
PropertyEditors
Gets or sets the property editors listed in the manifest.
Declaration
[DataMember(Name = "propertyEditors")]
public IDataEditor[] PropertyEditors { get; set; }
Property Value
Type | Description |
---|---|
IData |
Scripts
Gets or sets the scripts listed in the manifest.
Declaration
[DataMember(Name = "javascript")]
public string[] Scripts { get; set; }
Property Value
Type | Description |
---|---|
System. |
Sections
Gets or sets the sections listed in the manifest.
Declaration
[DataMember(Name = "sections")]
public ManifestSection[] Sections { get; set; }
Property Value
Type | Description |
---|---|
Manifest |
Source
Gets the source path of the manifest.
Declaration
[IgnoreDataMember]
public string Source { get; set; }
Property Value
Type | Description |
---|---|
System. |
Remarks
Gets the full absolute file path of the manifest, using system directory separators.
Stylesheets
Gets or sets the stylesheets listed in the manifest.
Declaration
[DataMember(Name = "css")]
public string[] Stylesheets { get; set; }
Property Value
Type | Description |
---|---|
System. |
Version
Gets or sets the version of the package
Declaration
[DataMember(Name = "version")]
public string Version { get; set; }
Property Value
Type | Description |
---|---|
System. |