Definition
- Namespace:
- Tizen.Applications
- Assembly:
- Tizen.Applications.Common.dll
This class provides methods and properties to get information of the application.
public class ApplicationInfo : IDisposable
- Inheritance
-
- Implements
-
System.IDisposable
Constructors
View Source
ApplicationInfo(string)
A constructor of ApplicationInfo that takes the application ID.
Declaration
public ApplicationInfo(string applicationId)
Parameters
Type |
Name |
Description |
string |
applicationId |
Application ID.
|
Properties
Declaration
public string ApplicationId { get; }
Property Value
View Source
ApplicationType
Gets the application type name.
Declaration
public string ApplicationType { get; }
Property Value
View Source
Categories
Gets the application's category values specified in the tizen-manifest
Declaration
public IEnumerable<string> Categories { get; }
Property Value
Type |
Description |
System.Collections.Generic.IEnumerable<T><string> |
|
View Source
ComponentType
Gets the application component type.
Declaration
public ApplicationComponentType ComponentType { get; }
Property Value
View Source
ExecutablePath
Gets the executable path of the application.
Declaration
public string ExecutablePath { get; }
Property Value
View Source
ExternalSharedDataPath
Gets the external shared data path.
Declaration
public string ExternalSharedDataPath { get; }
Property Value
View Source
IconPath
Gets the absolute path to the icon image.
Declaration
public string IconPath { get; }
Property Value
View Source
IsNoDisplay
Checks whether the application information is nodisplay. If the application icon is not displayed on the menu screen, true; otherwise, false.
Declaration
public bool IsNoDisplay { get; }
Property Value
View Source
IsOnBoot
Checks whether the application is launched on booting time. If the application automatically starts on boot, true; otherwise, false.
Declaration
public bool IsOnBoot { get; }
Property Value
View Source
IsPreload
Checks whether the application is preloaded. If the application is preloaded, true; otherwise, false.
Declaration
public bool IsPreload { get; }
Property Value
Declaration
public string Label { get; }
Property Value
Declaration
public IDictionary<string, string> Metadata { get; }
Property Value
Type |
Description |
System.Collections.Generic.IDictionary<TKey, TValue><string, string> |
|
View Source
PackageId
Gets the package ID of the application.
Declaration
public string PackageId { get; }
Property Value
View Source
ResourceControls
Gets the resource controls.
Declaration
public IEnumerable<ResourceControl> ResourceControls { get; }
Property Value
Type |
Description |
System.Collections.Generic.IEnumerable<T><ResourceControl> |
|
Declaration
public string SharedDataPath { get; }
Property Value
View Source
SharedResourcePath
Gets the shared resource path.
Declaration
public string SharedResourcePath { get; }
Property Value
View Source
SharedTrustedPath
Gets the shared trust path.
Declaration
public string SharedTrustedPath { get; }
Property Value
Methods
View Source
Dispose()
Releases all resources used by the ApplicationInfo class.
Declaration
Declaration
protected ~ApplicationInfo()
View Source
GetLocalizedLabel(string)
Gets the localized label of the application for the given locale.
Declaration
public string GetLocalizedLabel(string locale)
Parameters
Type |
Name |
Description |
string |
locale |
Locale.
|
Returns
Type |
Description |
string |
The localized label.
|
Implements
System.IDisposable