Class Application
Definition
- Namespace:
- Tizen.Applications
- Assembly:
- Tizen.Applications.Common.dll
- API Level:
- 3
The class that represents a Tizen application.
C#Copypublic abstract class Application : IDisposable
- Inheritance
-
System.ObjectApplication
- Derived
- Implements
-
System.IDisposable
Properties
Declaration
C#Copypublic ApplicationInfo ApplicationInfo { get; }
Property Value
Type | Description |
---|---|
ApplicationInfo |
API Level: 3
Declaration
C#Copypublic static Application Current { get; }
Property Value
Type | Description |
---|---|
Application |
API Level: 3
View Source
DirectoryInfo
Gets the class representing directory information of the current application.
Declaration
C#Copypublic DirectoryInfo DirectoryInfo { get; }
Property Value
Type | Description |
---|---|
DirectoryInfo |
API Level: 3
Declaration
C#Copypublic string Name { get; }
Property Value
Type | Description |
---|---|
System.String |
API Level: 6
Declaration
C#Copypublic string Version { get; }
Property Value
Type | Description |
---|---|
System.String |
API Level: 6
Methods
Declaration
C#Copypublic void Dispose()
API Level: 3
View Source
Dispose(Boolean)
Releases any unmanaged resources used by this object. Can also dispose any other disposable objects.
Declaration
C#Copyprotected virtual void Dispose(bool disposing)
Parameters
Type | Name | Description |
---|---|---|
Boolean | disposing | If true, disposes any disposable objects. If false, does not dispose disposable objects. |
API Level: 3
Declaration
C#Copypublic abstract void Exit()
API Level: 3
Declaration
C#Copyprotected void Finalize()
Declaration
C#Copypublic virtual void Run(string[] args)
Parameters
Type | Name | Description |
---|---|---|
System.String[] | args | Arguments from commandline. |
API Level: 3
Implements
System.IDisposable