DocumentLink.Target Property

Definition

Gets or sets the uri that the link points to.

public:
 property Uri ^ Target { Uri ^ get(); void set(Uri ^ value); };
[Newtonsoft.Json.JsonConverter(typeof(Microsoft.VisualStudio.LanguageServer.Protocol.DocumentUriConverter))]
[System.Runtime.Serialization.DataMember(Name="target")]
public Uri Target { get; set; }
[Newtonsoft.Json.JsonConverter(typeof(Microsoft.VisualStudio.LanguageServer.Protocol.DocumentUriConverter))]
[System.Runtime.Serialization.DataMember(Name="target")]
[Newtonsoft.Json.JsonProperty(NullValueHandling=Newtonsoft.Json.NullValueHandling.Ignore)]
public Uri? Target { get; set; }
[<Newtonsoft.Json.JsonConverter(typeof(Microsoft.VisualStudio.LanguageServer.Protocol.DocumentUriConverter))>]
[<System.Runtime.Serialization.DataMember(Name="target")>]
member this.Target : Uri with get, set
[<Newtonsoft.Json.JsonConverter(typeof(Microsoft.VisualStudio.LanguageServer.Protocol.DocumentUriConverter))>]
[<System.Runtime.Serialization.DataMember(Name="target")>]
[<Newtonsoft.Json.JsonProperty(NullValueHandling=Newtonsoft.Json.NullValueHandling.Ignore)>]
member this.Target : Uri with get, set
Public Property Target As Uri

Property Value

Uri
Attributes
Newtonsoft.Json.JsonConverterAttribute DataMemberAttribute Newtonsoft.Json.JsonPropertyAttribute

Applies to