Пример #1
0
 public CompletionItem(string label, CompletionItemKind kind, string detail, MarkupContent documentation, JToken data)
 {
     Label         = label;
     Kind          = kind;
     Detail        = detail;
     Documentation = documentation;
     Data          = data;
 }
 public SignatureInformation(string label, MarkupContent documentation, IList <ParameterInformation> parameters)
 {
     Label         = label;
     Documentation = documentation;
     Parameters    = parameters;
 }
 public SignatureInformation(string label, MarkupContent documentation) : this(label, documentation, null)
 {
 }
 public ParameterInformation(string label, MarkupContent documentation)
 {
     Label         = label;
     Documentation = documentation;
 }
Пример #5
0
 public Hover(MarkupContent contents, Range range)
 {
     Contents = contents;
     Range    = range;
 }
Пример #6
0
 public Hover(MarkupContent contents) : this(contents, new Range())
 {
 }