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; }
public Hover(MarkupContent contents, Range range) { Contents = contents; Range = range; }
public Hover(MarkupContent contents) : this(contents, new Range()) { }