Click or drag to resize
Json.NET

ExtensionsValues Method (IEnumerableJToken, Object)

 
Returns a collection of child values of every object in the source collection with the given key.

Namespace:  Newtonsoft.Json.Linq
Assembly:  Newtonsoft.Json (in Newtonsoft.Json.dll) Version: 12.0.1+509643a8952ce731e0207710c429ad6e67dc43db
Syntax
C#
public static IJEnumerable<JToken> Values(
	this IEnumerable<JToken> source,
	Object key
)

Parameters

source
Type: System.Collections.GenericIEnumerableJToken
An IEnumerableT of JToken that contains the source collection.
key
Type: SystemObject
The token key.

Return Value

Type: IJEnumerableJToken
An IEnumerableT of JToken that contains the values of every token in the source collection with the given key.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IEnumerableJToken. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also