Show / Hide Table of Contents

Interface IPackage

The interface for device-agnostic packages.

Namespace: Phoenix.Applications
Assembly: Phoenix.Abstractions.Applications.dll
Syntax
public interface IPackage

Properties

View Source

Applications

Gets the applications inside the package.

Declaration
IList<IApplication> Applications { get; }
Property Value
Type Description
System.Collections.Generic.IList<IApplication>
View Source

AppVersion

Gets the version of the package.

Declaration
Version AppVersion { get; }
Property Value
Type Description
System.Version
View Source

DisplayName

Gets the display name.

Declaration
string DisplayName { get; }
Property Value
Type Description
System.String
View Source

FullPath

Gets the full path to the installed package.

Declaration
string FullPath { get; }
Property Value
Type Description
System.String
View Source

ID

Gets the package ID.

Declaration
string ID { get; }
Property Value
Type Description
System.String
View Source

IsSystem

Gets a value indicating whether or not the package is a system package.

Declaration
bool IsSystem { get; }
Property Value
Type Description
System.Boolean

Methods

View Source

GetIsRunningAsync()

Gets a value indicating whether or not the package has a running application.

Declaration
Task<bool> GetIsRunningAsync()
Returns
Type Description
System.Threading.Tasks.Task<System.Boolean>

whether or not the package has a running application

  • View Source
In This Article
Back to top Generated by DocFX