Improve this Doc
View Source
Inheritance
System.Object
CompletionItem
Namespace:Microsoft.SqlTools.ServiceLayer.LanguageServices.Contracts
Assembly:Microsoft.SqlTools.ServiceLayer.dll
public class CompletionItem
Properties
|
Improve this Doc
View Source
Gets or sets a custom data field that allows the server to mark
each completion item with an identifier that will help correlate
the item to the previous completion request during a completion
resolve request.
Declaration
public object Data { get; set; }
Type |
Description |
System.Object |
|
|
Improve this Doc
View Source
Declaration
public string Detail { get; set; }
Type |
Description |
System.String |
|
|
Improve this Doc
View Source
Gets or sets the documentation string for the completion item.
Declaration
public string Documentation { get; set; }
Type |
Description |
System.String |
|
|
Improve this Doc
View Source
FilterText
Declaration
public string FilterText { get; set; }
Type |
Description |
System.String |
|
|
Improve this Doc
View Source
InsertText
Declaration
public string InsertText { get; set; }
Type |
Description |
System.String |
|
|
Improve this Doc
View Source
Declaration
public CompletionItemKind? Kind { get; set; }
|
Improve this Doc
View Source
Declaration
public string Label { get; set; }
Type |
Description |
System.String |
|
|
Improve this Doc
View Source
SortText
Declaration
public string SortText { get; set; }
Type |
Description |
System.String |
|
|
Improve this Doc
View Source
TextEdit
Declaration
public TextEdit TextEdit { get; set; }