Interface IGraphSONWriter
This interface is not meant to be implemented by users. It is part of the public API so that
the C# Graph Extension can provide custom serializers for the Tinkerpop GLV types.
Implementations of IGraphSONSerializer depend on IGraphSONWriter objects
to serialize inner properties.
It's basically an interface for the Tinkerpop's GraphSONWriter abstract class.
Assembly: Cassandra.dll
Syntax
public interface IGraphSONWriter
Methods
ToDict(dynamic)
Declaration
dynamic ToDict(dynamic objectData)
Parameters
Type |
Name |
Description |
dynamic |
objectData |
|
Returns
WriteObject(dynamic)
Declaration
string WriteObject(dynamic objectData)
Parameters
Type |
Name |
Description |
dynamic |
objectData |
|
Returns