Interface IGraphEdge<TNodeValue>
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<TNodeValue> : IGraphEdge, IExpando, IDynamicMetaObjectProvider, IIndexableType Parameters
| Name | Description | 
|---|---|
| TNodeValue | Type of the node value. | 
Properties
| Improve this Doc View SourceFrom
Gets the node from which the edge starts.
Declaration
IGraphNode<TNodeValue> From { get; }Property Value
| Type | Description | 
|---|---|
| IGraphNode<TNodeValue> | The node from which the edge starts. | 
To
Gets the node where the edge ends.
Declaration
IGraphNode<TNodeValue> To { get; }Property Value
| Type | Description | 
|---|---|
| IGraphNode<TNodeValue> | The node where the edge ends. |