Json.NET - Quick Starts & API Documentation
Values Method (source)
Namespaces ► Newtonsoft.Json.Linq ► Extensions ► Values(IEnumerable<(Of <<'(JToken>)>>))
Returns a collection of child values of every object in the source collection.
Declaration Syntax
C# | Visual Basic | Visual C++ |
public static IJEnumerable<JToken> Values( this IEnumerable<JToken> source )
<ExtensionAttribute> _ Public Shared Function Values ( _ source As IEnumerable(Of JToken) _ ) As IJEnumerable(Of JToken)
[ExtensionAttribute] public: static IJEnumerable<JToken^>^ Values( IEnumerable<JToken^>^ source )
Parameters
- source (IEnumerable<(Of <(<'JToken>)>)>)
- An IEnumerable<(Of <(<'T>)>)> of JToken that contains the source collection.
Return Value
An IEnumerable<(Of <(<'T>)>)> of JToken that contains the values of every node in the source collection.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type IEnumerable<(Of <(<'JToken>)>)>. When you use instance method syntax to call this method, omit the first parameter.