InitializationStatus Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Enum which represents the various point of the initialization process.
public enum class InitializationStatus
public enum InitializationStatus
type InitializationStatus =
Public Enum InitializationStatus
- Inheritance
-
InitializationStatus
Fields
ActivatingLanguageClient | 10 | Executing ActivateAsync(CancellationToken) method. |
AttachingRpcObjectForCustomMessaging | 60 | Calling AttachForCustomMessageAsync(JsonRpc) to provide the language client with the JsonRpc object to be used for custom messaging. |
ConfiguringRemoteCustomMessageTarget | 30 | Adding CustomMessageTarget to the JsonRpc object. This is only done if the language client implements ILanguageClientCustomMessage2. |
ConfiguringTracing | 40 | Configuring the client specific tracing. |
CreatingJsonRpcObject | 20 | Creating JsonRpc object with the provided connection. |
InitializationComplete | 100 | Initialization completed. |
InitializationNotStarted | 0 | Initialization has not started yet. |
InitializationStarted | 1 | Initialization has started. |
SendingInitializedNotification | 80 | Sending the LSP 'initialized' notification to the language server. |
SendingInitializeRequest | 70 | Sending the LSP 'initialize' request to the language server. |
StartingJsonRpcConnection | 50 | StartListening() is called for the connection object. |
SubscribingToDisconnectionEvents | 90 | Subscribing to the Disconnected event. |