[This is preliminary documentation and is subject to change.]

Deserializes the JSON string to the specified type.

Namespace:  Facebook.Json
Assembly:  Facebook (in Facebook.dll) Version: 0.2009.3.23 (0.2009.3.23)

Syntax

C#
public static T DeserializeObject<T>(
	string value,
	params JsonConverter[] converters
)
Visual Basic (Declaration)
Public Shared Function DeserializeObject(Of T) ( _
	value As String, _
	ParamArray converters As JsonConverter() _
) As T
Visual C++
public:
generic<typename T>
static T DeserializeObject(
	String^ value, 
	... array<JsonConverter^>^ converters
)

Parameters

value
Type: System..::.String
The object to deserialize.
converters
Type: array< Facebook.Json..::.JsonConverter >[]()[]
Converters to use while deserializing.

Type Parameters

T
The type of the object to deserialize.

Return Value

The deserialized object from the JSON string.

See Also

JsonConvert Class
DeserializeObject Overload
Facebook.Json Namespace