[Diese Dokumentation ist noch nicht fertig und kann sich bis zur entgültigen Version noch ändern.]
Eine Schnittstelle für alle Knoten.

Namespace: DynamicNode.Core
Assembly: DNCore (in DNCore.dll) Version: 1.4.4679.19807 (1.4.0.0)

Syntax

C#
public interface INode : IChild<IGraph, INode>, 
	IParent<INode, IPort>, IBaseObject, IIdentifiable, 
	IStorable, IExtensible<INode>, IDisposable, IComparable<INode>
Visual Basic
Public Interface INode _
	Inherits IChild(Of IGraph, INode), IParent(Of INode, IPort),  _
	IBaseObject, IIdentifiable, IStorable, IExtensible(Of INode),  _
	IDisposable, IComparable(Of INode)
F#
type INode =  
    interface
        interface IChild<IGraph, INode>
        interface IParent<INode, IPort>
        interface IBaseObject
        interface IIdentifiable
        interface IStorable
        interface IExtensible<INode>
        interface IDisposable
        interface IComparable<INode>
    end

Remarks

Diese Schnittstelle sollte außerhalb der Laufzeitumgebung anstelle der Klasse Node verwendet werden, um eine besser Entkopplung zu erreichen.

See Also