[Diese Dokumentation ist noch nicht fertig und kann sich bis zur entgültigen Version noch ändern.]
Jede Sammlung von verknüpften Knoten muss dieses Interface implementieren.

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

Syntax

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

Remarks

Dieses Interface ermöglicht das einheitliche Verwalten von unterschiedlichen Graphen.

See Also