Returns a collection of the child tokens of this token, in document order, filtered by the specified type.
| 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()
- T
- The type to filter the child tokens on.
A JEnumerable<(Of <(<'T>)>)> containing the child tokens of this JToken, in document order.