Enum ServerStateValue
public enum ServerStateValue
Fields
Exiting = 6Server has received an exit request and its process is about to terminate.
Initializing = 1Server has received the initialize request and is in the process of initializing, but has not yet completed initialization.
Running = 2Server is running and ready to handle client requests.
RunningTraceless = 4Server is running and ready to handle client requests with tracing disabled.
RunningVerbose = 3Server is running and ready to handle client requests with trace-level logs enabled.
ShuttingDown = 5Server has received a shutdown request and is in the process of cleanly shutting down the language server.
Starting = 0Server process has started but has not yet been initialized.