Interface IEdge
Represents an edge in DSE graph.
Inherited Members
System.IEquatable<Dse.Graph.IElement>.Equals(Dse.Graph.IElement)
Namespace: Dse.Graph
Assembly: Dse.dll
Syntax
public interface IEdge : IElement, IEquatable<IElement>
Properties
InV
Gets the incoming/head vertex.
Declaration
IGraphNode InV { get; }
Property Value
| Type | Description |
|---|---|
| IGraphNode |
InVLabel
Gets the label of the incoming/head vertex.
Declaration
string InVLabel { get; }
Property Value
| Type | Description |
|---|---|
| System.String |
OutV
Gets the outgoing/tail vertex.
Declaration
IGraphNode OutV { get; }
Property Value
| Type | Description |
|---|---|
| IGraphNode |
OutVLabel
Gets the label of the outgoing/tail vertex.
Declaration
string OutVLabel { get; }
Property Value
| Type | Description |
|---|---|
| System.String |