Search Results for

    Show / Hide Table of Contents
    View Source

    Interface IPackageManifestService

    Provides services for retrieving package manifests.

    Namespace: Umbraco.Cms.Core.Manifest
    Assembly: Umbraco.Core.dll
    Syntax
    public interface IPackageManifestService

    Methods

    View Source

    GetAllPackageManifestsAsync()

    Gets all package manifests asynchronously.

    Declaration
    Task<IEnumerable<PackageManifest>> GetAllPackageManifestsAsync()
    Returns
    Type Description
    Task<IEnumerable<PackageManifest>>

    A task that represents the asynchronous operation containing all package manifests.

    View Source

    GetPackageManifestImportmapAsync()

    Gets the combined importmap from all package manifests asynchronously.

    Declaration
    Task<PackageManifestImportmap> GetPackageManifestImportmapAsync()
    Returns
    Type Description
    Task<PackageManifestImportmap>

    A task that represents the asynchronous operation containing the merged PackageManifestImportmap.

    View Source

    GetPrivatePackageManifestsAsync()

    Gets all private package manifests asynchronously.

    Declaration
    Task<IEnumerable<PackageManifest>> GetPrivatePackageManifestsAsync()
    Returns
    Type Description
    Task<IEnumerable<PackageManifest>>

    A task that represents the asynchronous operation containing private package manifests that do not allow public access.

    View Source

    GetPublicPackageManifestsAsync()

    Gets all public package manifests asynchronously.

    Declaration
    Task<IEnumerable<PackageManifest>> GetPublicPackageManifestsAsync()
    Returns
    Type Description
    Task<IEnumerable<PackageManifest>>

    A task that represents the asynchronous operation containing public package manifests that allow public access.

    • View Source
    In this article
    Back to top Copyright © 2016-present Umbraco
    Generated by DocFX