TextDocumentSyncKind 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 ways to sync text documents.
See the Language Server Protocol specification for additional information.
public enum class TextDocumentSyncKind
[System.Runtime.Serialization.DataContract]
public enum TextDocumentSyncKind
[<System.Runtime.Serialization.DataContract>]
type TextDocumentSyncKind =
Public Enum TextDocumentSyncKind
- Inheritance
-
TextDocumentSyncKind
- Attributes
Fields
Name | Value | Description |
---|---|---|
None | 0 | Documents should not be synced at all. |
Full | 1 | Documents are synced by always sending the full text. |
Incremental | 2 | Documents are synced by sending only incremental updates. |