Deserialize to objects from a JSON stream.

Namespace: MonoSoftware.Core
Assembly: MonoSoftware.Core (in MonoSoftware.Core.dll) Version: 1.0.40.669 (1.0.40.669)

Syntax

C#
public static Object Deserialize(
	byte[] content,
	Type type
)
Visual Basic
Public Shared Function Deserialize ( 
	content As Byte(),
	type As Type
) As Object
Visual C++
public:
static Object^ Deserialize(
	array<unsigned char>^ content, 
	Type^ type
)
F#
static member Deserialize : 
        content : byte[] * 
        type : Type -> Object 

Parameters

content
Type: array<System..::..Byte>[]()[][]
Serialized content.
type
Type: System..::..Type
Object type

Return Value

Type: Object
Deserialized object.

See Also