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

Returns a collection of converted child values of every object in the source collection.

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

Syntax

C#
public static IEnumerable<U> Values<U>(
	this IEnumerable<JToken> source
)
Visual Basic (Declaration)
<ExtensionAttribute> _
Public Shared Function Values(Of U) ( _
	source As IEnumerable(Of JToken) _
) As IEnumerable(Of U)
Visual C++
[ExtensionAttribute]
public:
generic<typename U>
static IEnumerable<U>^ Values(
	IEnumerable<JToken^>^ source
)

Parameters

source
Type: System.Collections.Generic..::.IEnumerable<(Of <(JToken>)>)
An IEnumerable<(Of <(T>)>) of JToken that contains the source collection.

Type Parameters

U
The type to convert the values to.

Return Value

An IEnumerable<(Of <(T>)>) that contains the converted values of every node in the source collection.

See Also

Extensions Class
Values Overload
Facebook.Json.Linq Namespace