DocumentSymbol.Children Property

Definition

Gets or sets the children of this symbol, e.g. properties of a class.

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

Property Value

Attributes
DataMemberAttribute Newtonsoft.Json.JsonPropertyAttribute

Applies to