Json.NET - Quick Starts & API Documentation
Children<(Of <(<'T>)>)> Method
Namespaces ► Newtonsoft.Json.Linq ► JToken ► Children<(Of <<'(T>)>>)()()()()
Returns a collection of the child tokens of this token, in document order, filtered by the specified type.
Declaration Syntax
C# | Visual Basic | Visual C++ |
public JEnumerable<T> Children<T>() where T : JToken
Public Function Children(Of T As JToken) As JEnumerable(Of T)
public: generic<typename T> where T : JToken JEnumerable<T> Children()
Generic Template Parameters
- T
- The type to filter the child tokens on.
Return Value
A JEnumerable<(Of <(<'T>)>)> containing the child tokens of this JToken, in document order.