Interface IGraphNode
Defines the contract for a graph node.
Inherited Members
System.Dynamic.IDynamicMetaObjectProvider.GetMetaObject(System.Linq.Expressions.Expression)
Namespace: Kephas.Graphs
Assembly: Kephas.Core.dll
Syntax
public interface IGraphNode : IExpando, IDynamicMetaObjectProvider, IIndexable
Properties
| Improve this Doc View SourceConnectedEdges
Gets the connected edges.
Declaration
IReadOnlyCollection<IGraphEdge> ConnectedEdges { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IReadOnlyCollection<IGraphEdge> | The connected edges. |
ConnectedNodes
Gets the connected nodes.
Declaration
IReadOnlyCollection<IGraphNode> ConnectedNodes { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IReadOnlyCollection<IGraphNode> | The connected nodes. |
IncomingEdges
Gets the incoming nodes from this node.
Declaration
IReadOnlyCollection<IGraphEdge> IncomingEdges { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IReadOnlyCollection<IGraphEdge> | The incoming edges. |
OutgoingEdges
Gets the outgoing edges from this node.
Declaration
IReadOnlyCollection<IGraphEdge> OutgoingEdges { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IReadOnlyCollection<IGraphEdge> | The outgoing edges. |