Search Results for

    Show / Hide Table of Contents
    View Source

    Class PackageManifest

    Represents the content of a package manifest.

    Inheritance
    System.Object
    Namespace: Umbraco.Cms.Core.Manifest
    Assembly: Umbraco.Core.dll
    Syntax
    [DataContract]
    public class PackageManifest

    Properties

    View Source

    AllowPackageTelemetry

    Gets or sets a value indicating whether telemetry is allowed.

    Declaration
    [DataMember(Name = "allowPackageTelemetry")]
    public bool AllowPackageTelemetry { get; set; }
    Property Value
    Type Description
    System.Boolean

    true if package telemetry is allowed; otherwise, false.

    View Source

    BundleOptions

    Gets or sets the bundle options.

    Declaration
    [DataMember(Name = "bundleOptions")]
    public BundleOptions BundleOptions { get; set; }
    Property Value
    Type Description
    BundleOptions

    The bundle options.

    View Source

    ContentApps

    Gets or sets the content apps listed in the manifest.

    Declaration
    [DataMember(Name = "contentApps")]
    public ManifestContentAppDefinition[] ContentApps { get; set; }
    Property Value
    Type Description
    ManifestContentAppDefinition[]

    The content apps.

    View Source

    Dashboards

    Gets or sets the dashboards listed in the manifest.

    Declaration
    [DataMember(Name = "dashboards")]
    public ManifestDashboard[] Dashboards { get; set; }
    Property Value
    Type Description
    ManifestDashboard[]

    The dashboards.

    View Source

    GridEditors

    Gets or sets the grid editors listed in the manifest.

    Declaration
    [DataMember(Name = "gridEditors")]
    public GridEditor[] GridEditors { get; set; }
    Property Value
    Type Description
    GridEditor[]

    The grid editors.

    View Source

    PackageId

    Gets or sets the package identifier.

    Declaration
    [DataMember(Name = "id")]
    public string PackageId { get; set; }
    Property Value
    Type Description
    System.String

    The package identifier.

    View Source

    PackageName

    Gets or sets the name of the package. If not specified, uses the package identifier or directory name instead.

    Declaration
    [DataMember(Name = "name")]
    public string PackageName { get; set; }
    Property Value
    Type Description
    System.String

    The name of the package.

    View Source

    PackageView

    Gets or sets the package view.

    Declaration
    [DataMember(Name = "packageView")]
    public string PackageView { get; set; }
    Property Value
    Type Description
    System.String

    The package view.

    View Source

    ParameterEditors

    Gets or sets the parameter editors listed in the manifest.

    Declaration
    [DataMember(Name = "parameterEditors")]
    public IDataEditor[] ParameterEditors { get; set; }
    Property Value
    Type Description
    IDataEditor[]

    The parameter editors.

    View Source

    PropertyEditors

    Gets or sets the property editors listed in the manifest.

    Declaration
    [DataMember(Name = "propertyEditors")]
    public IDataEditor[] PropertyEditors { get; set; }
    Property Value
    Type Description
    IDataEditor[]

    The property editors.

    View Source

    Scripts

    Gets or sets the scripts listed in the manifest.

    Declaration
    [DataMember(Name = "javascript")]
    public string[] Scripts { get; set; }
    Property Value
    Type Description
    System.String[]

    The scripts.

    View Source

    Sections

    Gets or sets the sections listed in the manifest.

    Declaration
    [DataMember(Name = "sections")]
    public ManifestSection[] Sections { get; set; }
    Property Value
    Type Description
    ManifestSection[]

    The sections.

    View Source

    Source

    Gets or sets the source path of the manifest.

    Declaration
    [IgnoreDataMember]
    public string Source { get; set; }
    Property Value
    Type Description
    System.String

    The source path.

    Remarks

    Gets the full/absolute file path of the manifest, using system directory separators.

    View Source

    Stylesheets

    Gets or sets the stylesheets listed in the manifest.

    Declaration
    [DataMember(Name = "css")]
    public string[] Stylesheets { get; set; }
    Property Value
    Type Description
    System.String[]

    The stylesheets.

    View Source

    Version

    Gets or sets the version of the package.

    Declaration
    [DataMember(Name = "version")]
    public string Version { get; set; }
    Property Value
    Type Description
    System.String

    The version of the package.

    View Source

    VersionAssemblyName

    Gets or sets the assembly name to get the package version from.

    Declaration
    [DataMember(Name = "versionAssemblyName")]
    public string VersionAssemblyName { get; set; }
    Property Value
    Type Description
    System.String

    The assembly name to get the package version from.

    • Improve this Doc
    • View Source
    In This Article
    • Properties
      • AllowPackageTelemetry
      • BundleOptions
      • ContentApps
      • Dashboards
      • GridEditors
      • PackageId
      • PackageName
      • PackageView
      • ParameterEditors
      • PropertyEditors
      • Scripts
      • Sections
      • Source
      • Stylesheets
      • Version
      • VersionAssemblyName
    Back to top Copyright © 2016-present Umbraco
    Generated by DocFX