Class Application
Definition
- Namespace:
- Tizen.Applications
- Assembly:
- Tizen.Applications.Common.dll
- API Level:
- 3
The class that represents a Tizen application.
public abstract class Application : IDisposable
- Inheritance
-
Application
- Derived
- Implements
Properties
View SourceApplicationInfo
Gets the class representing information of the current application.
Declaration
public ApplicationInfo ApplicationInfo { get; }
Property Value
Type | Description |
---|---|
ApplicationInfo |
API Level: 3
View SourceCurrent
Gets the instance of the current application.
Declaration
public static Application Current { get; }
Property Value
Type | Description |
---|---|
Application |
API Level: 3
View SourceDirectoryInfo
Gets the class representing directory information of the current application.
Declaration
public DirectoryInfo DirectoryInfo { get; }
Property Value
Type | Description |
---|---|
DirectoryInfo |
API Level: 3
View SourceName
Gets the name of current application.
Declaration
public string Name { get; }
Property Value
Type | Description |
---|---|
String |
API Level: 6
View SourceVersion
Gets the version of current application.
Declaration
public string Version { get; }
Property Value
Type | Description |
---|---|
String |
API Level: 6
Methods
View SourceDispose()
Releases all resources used by the application class.
Declaration
public void Dispose()
API Level: 3
View SourceDispose(Boolean)
Releases any unmanaged resources used by this object. Can also dispose any other disposable objects.
Declaration
protected 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
View SourceExit()
Exits the main loop of the application.
Declaration
public abstract void Exit()
API Level: 3
View SourceFinalize()
Finalizer of the application class.
Declaration
protected void Finalize()
Run(String[])
Runs the application's main loop.
Declaration
public virtual void Run(string[] args)
Parameters
Type | Name | Description |
---|---|---|
String[] | args | Arguments from commandline. |