Class ServiceComponent
Definition
- Namespace:
- Tizen.Applications.Component
Based .Common
- Assembly:
- Tizen.Applications.ComponentBased.dll
The class for showing service module
C#
Copy
public abstract class ServiceComponent : BaseComponent
- Inheritance
Methods
Declaration
C#
Copy
public abstract bool OnCreate()
Returns
Type | Description |
---|---|
bool | True if a service component is successfully created |
View Source
OnDestroy()
Overrides this method if want to handle behavior when the component is destroyed.
Declaration
C#
Copy
public virtual void OnDestroy()
View Source
OnStartCommand(AppControl, bool)
Overrides this method if want to handle behavior when the component receives the start command message.
Declaration
C#
Copy
public virtual void OnStartCommand(AppControl appControl, bool restarted)
Parameters
Type | Name | Description |
---|---|---|
App |
appControl | appcontrol object |
bool | restarted | True if it was restarted |