CompletionItem.AdditionalTextEdits Property

Definition

Gets or sets any additional text edits.

public:
 property cli::array <Microsoft::VisualStudio::LanguageServer::Protocol::TextEdit ^> ^ AdditionalTextEdits { cli::array <Microsoft::VisualStudio::LanguageServer::Protocol::TextEdit ^> ^ get(); void set(cli::array <Microsoft::VisualStudio::LanguageServer::Protocol::TextEdit ^> ^ value); };
[Newtonsoft.Json.JsonProperty(NullValueHandling=Newtonsoft.Json.NullValueHandling.Ignore)]
[System.Runtime.Serialization.DataMember(Name="additionalTextEdits")]
public Microsoft.VisualStudio.LanguageServer.Protocol.TextEdit[] AdditionalTextEdits { get; set; }
[Newtonsoft.Json.JsonProperty(NullValueHandling=Newtonsoft.Json.NullValueHandling.Ignore)]
[System.Runtime.Serialization.DataMember(Name="additionalTextEdits")]
public Microsoft.VisualStudio.LanguageServer.Protocol.TextEdit[]? AdditionalTextEdits { get; set; }
[<Newtonsoft.Json.JsonProperty(NullValueHandling=Newtonsoft.Json.NullValueHandling.Ignore)>]
[<System.Runtime.Serialization.DataMember(Name="additionalTextEdits")>]
member this.AdditionalTextEdits : Microsoft.VisualStudio.LanguageServer.Protocol.TextEdit[] with get, set
Public Property AdditionalTextEdits As TextEdit()

Property Value

Attributes
Newtonsoft.Json.JsonPropertyAttribute DataMemberAttribute

Remarks

Additional text edits must not interfere with the main text edit.

Applies to