SerializeObjectToByteArrayT Delegate |
A delegate to handle serialization of an object to a byte[].
Namespace:
RiakClient.Models
Assembly:
RiakClient (in RiakClient.dll) Version: f9bb17a3f8ff6940b88010a52f202e3d55fe25c5
Syntax public delegate byte[] SerializeObjectToByteArray<in T>(
T theObject
)
type SerializeObjectToByteArray =
delegate of
theObject : 'T -> byte[]
Parameters
- theObject
- Type: T
The object to serialize.
Type Parameters
- T
- The type of the object to serialize.
Return Value
Type:
ByteA byte[] containing the serialized object.
See Also