Class EFLComponentBasedApplication

Definition

Namespace:
Tizen.Applications.ComponentBased.Default
Assembly:
Tizen.Applications.ComponentBased.Default.dll
API Level:
6

The basic EFL component-based application class.

C#
Copy
[Obsolete("Deprecated since API10. Will be removed in API12.")] public class EFLComponentBasedApplication : ComponentBasedApplication, IDisposable
Inheritance
System.Object
EFLComponentBasedApplication
Implements
System.IDisposable

Constructors

View Source

EFLComponentBasedApplication(IDictionary<Type, String>)

Initializes the ComponentBasedApplication class.

Declaration
C#
Copy
[Obsolete("Deprecated since API10. Will be removed in API12.")] public EFLComponentBasedApplication(IDictionary<Type, string> typeInfo)
Parameters
Type Name Description
IDictionary<Type, System.String> typeInfo

The component type information. The key should be a class type of BaseComponent subclass. The value should be a component id which is declared in tizen-manifest.xml.

API Level: 6

Methods

View Source

OnExit()

This method will be called to exit main-loop

Declaration
C#
Copy
[Obsolete("Deprecated since API10. Will be removed in API12.")] protected override void OnExit()
Overrides
API Level: 6
View Source

OnFinished()

This method will be called after exiting main-loop

Declaration
C#
Copy
[Obsolete("Deprecated since API10. Will be removed in API12.")] protected override void OnFinished()
Overrides
API Level: 6
View Source

OnInit(String[])

This method will be called before running main-loop

Declaration
C#
Copy
[Obsolete("Deprecated since API10. Will be removed in API12.")] protected override void OnInit(string[] args)
Parameters
Type Name Description
System.String[] args
Overrides
API Level: 6
View Source

OnRun()

This method will be called to start main-loop

Declaration
C#
Copy
[Obsolete("Deprecated since API10. Will be removed in API12.")] protected override void OnRun()
Overrides
API Level: 6

Implements

System.IDisposable