Enum ClientState
Denotes the state of the client
public enum ClientState
Fields
Initial = 0
The client has been created.
Running = 3
The client was successfully started and is now running.
ServerError = 6
An error was encountered while connecting to the server. No action messages can be sent.
StartFailed = 2
The client failed to complete the start process.
Starting = 1
Start
has been called on the client and the start process is still on-going.Stopped = 5
The client stopped and disposed the server connection. Thus, action messages can no longer be sent.
Stopping = 4
Stop
has been called on the client and the stop process is still on-going.