Class EFLComponentBasedApplication
Definition
- Namespace:
- Tizen.Applications.ComponentBased.Default
- Assembly:
- Tizen.Applications.ComponentBased.Default.dll
The basic EFL component-based application class.
[Obsolete("Deprecated since API10. Will be removed in API12.")]
public class EFLComponentBasedApplication : ComponentBasedApplication, IDisposable
- Inheritance
- Implements
-
System.IDisposable
Constructors
View SourceEFLComponentBasedApplication(IDictionary<Type, string>)
Initializes the ComponentBasedApplication class.
Declaration
[Obsolete("Deprecated since API10. Will be removed in API12.")]
public EFLComponentBasedApplication(IDictionary<Type, string> typeInfo)
Parameters
Type | Name | Description |
---|---|---|
System.Collections.Generic.IDictionary<TKey, TValue><System.Type, 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. |
Methods
View SourceOnExit()
This method will be called to exit main-loop
Declaration
[Obsolete("Deprecated since API10. Will be removed in API12.")]
protected override void OnExit()
Overrides
View SourceOnFinished()
This method will be called after exiting main-loop
Declaration
[Obsolete("Deprecated since API10. Will be removed in API12.")]
protected override void OnFinished()
Overrides
View SourceOnInit(string[])
This method will be called before running main-loop
Declaration
[Obsolete("Deprecated since API10. Will be removed in API12.")]
protected override void OnInit(string[] args)
Parameters
Type | Name | Description |
---|---|---|
string[] | args |
Overrides
View SourceOnRun()
This method will be called to start main-loop
Declaration
[Obsolete("Deprecated since API10. Will be removed in API12.")]
protected override void OnRun()
Overrides
Implements
System.IDisposable