Click or drag to resize
Json.NET

JTokenChildrenT Method

 
Returns a collection of the child tokens of this token, in document order, filtered by the specified type.

Namespace:  Newtonsoft.Json.Linq
Assembly:  Newtonsoft.Json (in Newtonsoft.Json.dll) Version: 12.0.1+509643a8952ce731e0207710c429ad6e67dc43db
Syntax
C#
public JEnumerable<T> Children<T>()
where T : JToken

Type Parameters

T
The type to filter the child tokens on.

Return Value

Type: JEnumerableT
A JEnumerableT containing the child tokens of this JToken, in document order.
See Also