Interface IGraphNode<TValue>
Defines the contract for a graph node holding a value.
Inherited Members
System.Dynamic.IDynamicMetaObjectProvider.GetMetaObject(System.Linq.Expressions.Expression)
Namespace: Kephas.Graphs
Assembly: Kephas.Core.dll
Syntax
public interface IGraphNode<TValue> : IGraphNode, IExpando, IDynamicMetaObjectProvider, IIndexable
Type Parameters
Name | Description |
---|---|
TValue | Type of the value. |
Properties
| Improve this Doc View SourceValue
Gets or sets the node value.
Declaration
TValue Value { get; set; }
Property Value
Type | Description |
---|---|
TValue | The node value. |