Interface IPath
Represents a walk through a graph as defined by a traversal.
Namespace: Dse.Graph
Assembly: Dse.dll
Syntax
public interface IPath
Properties
Labels
Gets the sets of labels of the steps traversed by this path, or an empty list, if this path is empty.
Declaration
ICollection<ICollection<string>> Labels { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.ICollection<System.Collections.Generic.ICollection<System.String>> |
Objects
Gets the objects traversed by this path, or an empty list, if this path is empty.
Declaration
ICollection<IGraphNode> Objects { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.ICollection<IGraphNode> |