Interface IGraphEdge
Defines the contract for a graph edge.
Inherited Members
System.Dynamic.IDynamicMetaObjectProvider.GetMetaObject(System.Linq.Expressions.Expression)
Namespace: Kephas.Graphs
Assembly: Kephas.Core.dll
Syntax
public interface IGraphEdge : IExpando, IDynamicMetaObjectProvider, IIndexable
Properties
| Improve this Doc View SourceFrom
Gets the node from which the edge starts.
Declaration
IGraphNode From { get; }
Property Value
Type | Description |
---|---|
IGraphNode | The node from which the edge starts. |
To
Gets the node where the edge ends.
Declaration
IGraphNode To { get; }
Property Value
Type | Description |
---|---|
IGraphNode | The node where the edge ends. |