[This is preliminary documentation and is subject to change.]

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

Namespace:  Facebook.Json.Linq
Assembly:  Facebook (in Facebook.dll) Version: 0.2009.3.23 (0.2009.3.23)

Syntax

C#
public JEnumerable<T> Children<T>()
where T : JToken
Visual Basic (Declaration)
Public Function Children(Of T As JToken) As JEnumerable(Of T)
Visual C++
public:
generic<typename T>
where T : JToken
JEnumerable<T> Children()

Type 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.

See Also

JToken Class
Children Overload
Facebook.Json.Linq Namespace