Interface IPackageManifest
Namespace: Umbraco.Cms.Core.Manifest
Assembly: Umbraco.Core.dll
Syntax
public interface IPackageManifest
Properties
View SourceContentApps
Gets or sets the content apps listed in the manifest.
Declaration
[DataMember(Name = "contentApps")]
ManifestContentAppDefinition[] ContentApps { get; set; }
Property Value
Type | Description |
---|---|
ManifestContentAppDefinition[] |
Dashboards
Gets or sets the dashboards listed in the manifest.
Declaration
[DataMember(Name = "dashboards")]
ManifestDashboard[] Dashboards { get; set; }
Property Value
Type | Description |
---|---|
ManifestDashboard[] |
GridEditors
Gets or sets the grid editors listed in the manifest.
Declaration
[DataMember(Name = "gridEditors")]
GridEditor[] GridEditors { get; set; }
Property Value
Type | Description |
---|---|
GridEditor[] |
ParameterEditors
Gets or sets the parameter editors listed in the manifest.
Declaration
[DataMember(Name = "parameterEditors")]
IDataEditor[] ParameterEditors { get; set; }
Property Value
Type | Description |
---|---|
IDataEditor[] |
PropertyEditors
Gets or sets the property editors listed in the manifest.
Declaration
[DataMember(Name = "propertyEditors")]
IDataEditor[] PropertyEditors { get; set; }
Property Value
Type | Description |
---|---|
IDataEditor[] |
Scripts
Gets or sets the scripts listed in the manifest.
Declaration
[DataMember(Name = "javascript")]
string[] Scripts { get; set; }
Property Value
Type | Description |
---|---|
System.String[] |
Sections
Gets or sets the sections listed in the manifest.
Declaration
[DataMember(Name = "sections")]
ManifestSection[] Sections { get; set; }
Property Value
Type | Description |
---|---|
ManifestSection[] |
Source
Gets the source path of the manifest.
Declaration
string Source { get; set; }
Property Value
Type | Description |
---|---|
System.String |
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")]
string[] Stylesheets { get; set; }
Property Value
Type | Description |
---|---|
System.String[] |