Enumeration of common object lifecycle states.
enum
LifecycleState
See also:
Unknown
= -1
Unknown lifecycle state (e.g. for null references).
null
Created
= 0
The object has been constructed but not yet initialized.
Initializing
= 1
The object is being initialized.
Initialized
= 2
The object has been initialized.
Disposing
= 3
Disposal of the object has begun.
Disposed
= 4
Disposal of the object has finished.