Click or drag to resize
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
)

Parameters

theObject
Type: T
The object to serialize.

Type Parameters

T
The type of the object to serialize.

Return Value

Type: Byte
A byte[] containing the serialized object.
See Also