Class ServerAlreadyRunningException
This exception is thrown when a LSP client application attempts to launch an already-running language server.
public class ServerAlreadyRunningException : SdkException, ISerializable
- Inheritance
-
ServerAlreadyRunningException
- Implements
- Inherited Members
Constructors
ServerAlreadyRunningException(int)
This exception is thrown when a LSP client application attempts to launch an already-running language server.
public ServerAlreadyRunningException(int ProcessId)
Parameters
ProcessIdint
Properties
ProcessId
Gets the PID of the already-running language server application.
public int ProcessId { get; }
Property Value
Remarks
Client should then kill it and start a new server instance, as needed or applicable.