Enum ServiceLifecycleState
Definition
- Namespace:
- Tizen.Applications
- Assembly:
- Tizen.Applications.UnitedService.dll
Enumeration for the lifecycle state of the service.
public enum ServiceLifecycleState
Fields
| Name | Description |
|---|---|
| Created | The created state. This state is set when the service is created. The 'OnCreate()' method of the service is called. |
| Destroyed | The destroyed state. This state is set when the service is destroyed. The 'OnDestroy()' method of the service is called. |
| Initialized | The initialized state. This state is set when the service is initialized. The constructor of the service is called. |
| Running | The running state. |