Interface IGraphSONSerializer
Supports serializing of an object to GraphSON.
Namespace: Cassandra.DataStax.Graph.Internal
Assembly: Cassandra.dll
Syntax
public interface IGraphSONSerializer
Methods
Dictify(dynamic, IGraphSONWriter)
Transforms an object into a dictionary that resembles its GraphSON representation.
Declaration
Dictionary<string, dynamic> Dictify(dynamic objectData, IGraphSONWriter writer)
Parameters
Type | Name | Description |
---|---|---|
dynamic | objectData | The object to dictify. |
IGraphSONWriter | writer | A IGraphSONWriter that can be used to dictify properties of the object. |
Returns
Type | Description |
---|---|
Dictionary<string, dynamic> | The GraphSON representation. |