Class LanguageServerAlreadyRunningException
This exception is thrown when a LSP client application attempts to launch an already-running language server.
public class LanguageServerAlreadyRunningException : SdkException, ISerializable
- Inheritance
-
LanguageServerAlreadyRunningException
- Implements
- Inherited Members
Constructors
LanguageServerAlreadyRunningException(int)
This exception is thrown when a LSP client application attempts to launch an already-running language server.
public LanguageServerAlreadyRunningException(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.