[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 Object DeserializeObject(
	string value,
	Type type,
	JsonSerializerSettings settings
)
Visual Basic (Declaration)
Public Shared Function DeserializeObject ( _
	value As String, _
	type As Type, _
	settings As JsonSerializerSettings _
) As Object
Visual C++
public:
static Object^ DeserializeObject(
	String^ value, 
	Type^ type, 
	JsonSerializerSettings^ settings
)

Parameters

value
Type: System..::.String
The object to deserialize.
type
Type: System..::.Type
The type of the object to deserialize.
settings
Type: Facebook.Json..::.JsonSerializerSettings
The JsonSerializerSettings used to deserialize the object. If this is null, default serialization settings will be is used.

Return Value

The deserialized object from the JSON string.

See Also

JsonConvert Class
DeserializeObject Overload
Facebook.Json Namespace