Click or drag to resize

IGraphNode Interface

Namespace:  Dse.Graph
Assembly:  Dse (in Dse.dll) Version: 2.9.0
Syntax
C#
public interface IGraphNode : IEquatable<IGraphNode>

The IGraphNode type exposes the following members.

Properties
  NameDescription
Public propertyIsArray
Returns true if the underlying value is an array.
Public propertyIsObjectTree
Returns true if the underlying value is an object tree.
Public propertyIsScalar
Returns true if the underlying value is a scalar value (string, double, boolean, ...).
Top
Methods
  NameDescription
Public methodGetT
Gets the typed value of a property of the result.
Public methodGetProperties
Gets the a dictionary of properties of this node.
Public methodHasProperty
Returns true if the property is defined in this instance.
Public methodTo(Type)
Returns the representation of the GraphNode as an instance of the type provided.
Public methodToT
Returns the representation of the GraphNode as an instance of type T.
Public methodToBoolean
Returns the representation of the result as a boolean.
Public methodToDouble
Returns the representation of the result as a double.
Public methodToIArray
Converts the instance into an array when the internal representation is a json array.
Public methodToInt32
Returns the representation of the result as an int.
Top
See Also