Interface IGraphSONSerializer
Supports serializing of an object to GraphSON.
Namespace: Gremlin.Net.Structure.IO.GraphSON
Assembly: cs.temp.dll.dll
Syntax
public interface IGraphSONSerializer
Methods
Dictify(Object, GraphSONWriter)
Transforms an object into a dictionary that resembles its GraphSON representation.
Declaration
Dictionary<string, dynamic> Dictify(dynamic objectData, GraphSONWriter writer)
Parameters
Type | Name | Description |
---|---|---|
System.Object | objectData | The object to dictify. |
GraphSONWriter | writer | A GraphSONWriter that can be used to dictify properties of the object. |
Returns
Type | Description |
---|---|
System.Collections.Generic.Dictionary<System.String, System.Object> | The GraphSON representation. |