Class FileChange
Contains details relating to a content change in an open file.
Inheritance
System.Object
                  FileChange
              Namespace:Microsoft.SqlTools.ServiceLayer.Workspace.Contracts
Assembly:Microsoft.SqlTools.ServiceLayer.dll
Syntax
public class FileChangeProperties
| Improve this Doc View SourceEndLine
The 1-based line number where the change ends.
Declaration
public int EndLine { get; set; }| Type | Description | 
|---|---|
| System.Int32 | 
EndOffset
The 1-based column offset where the change ends.
Declaration
public int EndOffset { get; set; }| Type | Description | 
|---|---|
| System.Int32 | 
InsertString
The string which is to be inserted in the file.
Declaration
public string InsertString { get; set; }| Type | Description | 
|---|---|
| System.String | 
Line
The 1-based line number where the change starts.
Declaration
public int Line { get; set; }| Type | Description | 
|---|---|
| System.Int32 | 
Offset
The 1-based column offset where the change starts.
Declaration
public int Offset { get; set; }| Type | Description | 
|---|---|
| System.Int32 |