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