Enum ComponentRunningContext.ComponentState
Definition
- Namespace:
- Tizen.Applications.ComponentBased
- Assembly:
- Tizen.Applications.ComponentBased.ComponentManager.dll
Represents the possible states of a component.
public enum ComponentRunningContext.ComponentState
Fields
| Name | Description |
|---|---|
| Created | The created state. This state is reached after OnCreate() is called. |
| Destroyed | The destroyed state. This state is reached right before OnDestroy() call. |
| Initialized | The Initialized state. This is the state when the component is constructed but OnCreate() is not called yet. |
| Paused | The paused state. This state is reached after OnPause() is called. |
| Resumed | The resumed state. This state is reached after OnResume() is called. |
| Started | The started state. This state is reached after OnStart() or OnStartCommand() is called. |