Json.NET - Quick Starts & API Documentation
Load Method (reader)
Namespaces ► Newtonsoft.Json.Linq ► JArray ► Load(JsonReader)
Loads an JArray from a JsonReader.
Declaration Syntax
C# | Visual Basic | Visual C++ |
public static JArray Load( JsonReader reader )
Public Shared Function Load ( _ reader As JsonReader _ ) As JArray
public: static JArray^ Load( JsonReader^ reader )
Parameters
- reader (JsonReader)
- A JsonReader that will be read for the content of the JArray.
Return Value
A JArray that contains the JSON that was read from the specified JsonReader.