Click or drag to resize

IApiClientSerializationSerializeT Method

Serializes the specified object to a sequence of bytes, following the provided rules for camel case property name and null value handling.

Namespace:  ArangoDBNetStandard.Serialization
Assembly:  ArangoDBNetStandard (in ArangoDBNetStandard.dll) Version: 1.1.0
Syntax
byte[] Serialize<T>(
	T item,
	ApiClientSerializationOptions serializationOptions
)

Parameters

item
Type: T
The object to serialize.
serializationOptions
Type: ArangoDBNetStandard.SerializationApiClientSerializationOptions
The serialization options. When the value is null the the serialization options should be provided by the serializer, otherwise the given options should be used.

Type Parameters

T
The type of the object to serialize.

Return Value

Type: Byte
See Also