Click or drag to resize
DeserializeObjectT Delegate
A delegate to handle deserialization of an byte[] serialized object to it's original type.

Namespace:  RiakClient.Models
Assembly:  RiakClient (in RiakClient.dll) Version: f9bb17a3f8ff6940b88010a52f202e3d55fe25c5
Syntax
public delegate T DeserializeObject<out T>(
	byte[] theObject,
	string contentType = null
)

Parameters

theObject
Type: SystemByte
The serialized object.
contentType (Optional)
Type: SystemString
Content type of the object.

Type Parameters

T
The destination type of the object.

Return Value

Type: T
The deserialized object.
See Also