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
)
type DeserializeObject =
delegate of
theObject : byte[] *
?contentType : string
(* Defaults:
let _contentType = defaultArg contentType null
*)
-> 'T
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:
TThe deserialized object.
See Also