Json.NET - Quick Starts & API Documentation
DeserializeObject<(Of <(T>)>) Method (value, converters)
NamespacesNewtonsoft.JsonJavaScriptConvertDeserializeObject<(Of <(T>)>)(String, array<JsonConverter>[]()[])
Deserializes the JSON string to the specified type.
Declaration Syntax
C#Visual BasicVisual C++
public static T DeserializeObject<T>(
	string value,
	params JsonConverter[] converters
)
Public Shared Function DeserializeObject(Of T) ( _
	value As String, _
	ParamArray converters As JsonConverter() _
) As T
public:
generic<typename T>
static T DeserializeObject(
	String^ value, 
	... array<JsonConverter^>^ converters
)
Generic Template Parameters
T
The type of the object to deserialize.
Parameters
value (String)
The object to deserialize.
converters (array< JsonConverter >[]()[])
Converters to use while deserializing.
Return Value
The deserialized object from the JSON string.

Assembly: Newtonsoft.Json (Module: Newtonsoft.Json) Version: 2.0.0.0 (2.0.0.0)