Enum GlobalState
Describes the global state of the Linphone.Core object.
It is notified via the global_state_changed() callback in Linphone.CoreListener.
Namespace: Linphone
Assembly: cs.temp.dll.dll
Syntax
public enum GlobalState
Fields
Name | Description |
---|---|
Configuring | Transient state between Startup and On if there is a remote provisionning URI configured.
|
Off | State in which we're in after Linphone.Core.Stop(). Do not call any method while in this state except for Linphone.Core.Start() |
On | Indicates Linphone.Core has been started and is up and running.
|
Ready | Linphone.Core state after being created by linphone_factory_create_core, generally followed by a call to Linphone.Core.Start()
|
Shutdown | Transient state for when we call Linphone.Core.Stop()
|
Startup | Transient state for when we call Linphone.Core.Start()
|