Class TextDocumentEdit
Represents the text document edit instructions, including the document and the edits.
public class TextDocumentEdit
- Inheritance
-
TextDocumentEdit
- Inherited Members
Properties
Edits
An Array of edits to perform on the document (e.g., insertions, deletions).
public TextEdit[] Edits { get; set; }
Property Value
- TextEdit[]
TextDocument
Identifies the text document to edit, including optional version information.
public OptionalVersionedTextDocumentIdentifier TextDocument { get; set; }