Click or drag to resize
Json.NET

IJEnumerableT Interface

 
Represents a collection of JToken objects.

Namespace:  Newtonsoft.Json.Linq
Assembly:  Newtonsoft.Json (in Newtonsoft.Json.dll) Version: 12.0.1+509643a8952ce731e0207710c429ad6e67dc43db
Syntax
C#
public interface IJEnumerable<out T> : IEnumerable<T>, 
	IEnumerable
where T : JToken

Type Parameters

T
The type of token.

The IJEnumerableT type exposes the following members.

Properties
  NameDescription
Public propertyItem
Gets the IJEnumerableT of JToken with the specified key.
Top
Methods
  NameDescription
Public methodGetEnumerator
Returns an enumerator that iterates through the collection.
(Inherited from IEnumerableT.)
Top
Extension Methods
  NameDescription
Public Extension MethodAncestorsT
Returns a collection of tokens that contains the ancestors of every token in the source collection.
(Defined by Extensions.)
Public Extension MethodAncestorsAndSelfT
Returns a collection of tokens that contains every token in the source collection, and the ancestors of every token in the source collection.
(Defined by Extensions.)
Public Extension MethodAsJEnumerableT
Returns the input typed as IJEnumerableT.
(Defined by Extensions.)
Public Extension MethodChildrenTOverloaded.
Returns a collection of child tokens of every array in the source collection.
(Defined by Extensions.)
Public Extension MethodChildrenT, UOverloaded.
Returns a collection of converted child tokens of every array in the source collection.
(Defined by Extensions.)
Public Extension MethodValueT, U
Converts the value.
(Defined by Extensions.)
Top
See Also