Click or drag to resize

SerialisationUtilitySerializeObjectToByteList method

Serializes an object into a byte list.

Namespace: NetEti.ObjectSerializer
Assembly: NetEti.ObjectSerializer (in NetEti.ObjectSerializer.dll) Version: 1.0.0+3401da3cf5a9b62af93a112ab3b276c2efb89060
Syntax
public static Cunning<byte> SerializeObjectToByteList(
	
	Object obj,
	
	bool anonymousToString = false,
	
	int recu = 0
)

Parameters

obj  Object
The object to be serialized.
anonymousToString  Boolean  (Optional)
With True, contained anonymous data objects are only encrypted as strings; default: false.
recu  Int32  (Optional)
For internal use only.

Return value

CunningByte
Byte list with the bytes of the object.
See also