Class ApplicationRunningContext
Definition
- Namespace:
- Tizen.Applications
- Assembly:
- Tizen.Applications.Common.dll
This class provides methods and properties to get information of the application.
public class ApplicationRunningContext : IDisposable
- Inheritance
-
objectApplicationRunningContext
- Implements
-
System.IDisposable
Constructors
View SourceApplicationRunningContext(string)
A constructor of ApplicationRunningContext that takes the application ID.
Declaration
public ApplicationRunningContext(string applicationId)
Parameters
Type | Name | Description |
---|---|---|
string | applicationId | Application ID. |
Exceptions
Type | Condition |
---|---|
System.ArgumentException | Thrown when failed because of an invalid argument. |
System.InvalidOperationException | Thrown when failed because of the "application not exist" error or the system error. |
System.OutOfMemoryException | Thrown when failed because of out of memory. |
Properties
View SourceApplicationId
Gets the application ID.
Declaration
public string ApplicationId { get; }
Property Value
Type | Description |
---|---|
string |
IsSubApp
Gets whether the application is sub application of the application group.
Declaration
public bool IsSubApp { get; }
Property Value
Type | Description |
---|---|
bool |
PackageId
Gets the package ID of the application.
Declaration
public string PackageId { get; }
Property Value
Type | Description |
---|---|
string |
ProcessId
Gets the application's process ID.
Declaration
public int ProcessId { get; }
Property Value
Type | Description |
---|---|
int |
State
Gets the state of the application.
Declaration
public ApplicationRunningContext.AppState State { get; }
Property Value
Type | Description |
---|---|
ApplicationRunningContext.AppState |
Methods
View SourceDispose()
Releases all resources used by the ApplicationRunningContext class.
Declaration
public void Dispose()
~ApplicationRunningContext()
Destructor of the class.
Declaration
protected ~ApplicationRunningContext()
Resume()
Resumes the running application.
Declaration
public void Resume()
Exceptions
Type | Condition |
---|---|
System.ArgumentException | Thrown when failed of invalid argument. |
System.UnauthorizedAccessException | Thrown when failed because of permission denied. |
System.InvalidOperationException | Thrown when failed because of system error. |