Click or drag to resize
InheritanceHierarchyView Class
Specialized SubGraphView which is capable of adding new vertices/edges if new edges are added to the maingraph
Inheritance Hierarchy
System.Object
  SD.Tools.Algorithmia.Graphs.SubGraphView<EntityDefinition, InheritanceEdge>
    SD.LLBLGen.Pro.ApplicationCore.EntityModel.InheritanceHierarchyView
      SD.LLBLGen.Pro.ApplicationCore.EntityModel.SubHierarchyView

Namespace:  SD.LLBLGen.Pro.ApplicationCore.EntityModel
Assembly:  SD.LLBLGen.Pro.ApplicationCore (in SD.LLBLGen.Pro.ApplicationCore.dll) Version: 5.2.0.0 (5.2.17.0403)
Syntax
public class InheritanceHierarchyView : SubGraphView<EntityDefinition, InheritanceEdge>

The InheritanceHierarchyView type exposes the following members.

Constructors
  NameDescription
Public methodInheritanceHierarchyView
Initializes a new instance of the InheritanceHierarchyView class.
Top
Properties
  NameDescription
Public propertyEdges
Gets the edges contained in this SubGraphView. All edges are part of this.MainGraph. All vertices are part of this.MainGraph. Enumerating this property will enumerate the inner structures of the SubGraphView, no copy is made. This requires a lock on this.MainGraph.SyncRoot if this.MainGraph.IsSynchronized is set to true to make sure enumeration of this property is thread safe.
(Inherited from SubGraphView<TVertex, TEdge>.)
Public propertyHierarchyRoot
Gets the hierarchy root.
Public propertyMainGraph
Gets the main graph this SubGraphView is a view on
(Inherited from SubGraphView<TVertex, TEdge>.)
Public propertyVertices
Gets the vertices contained in this SubGraphView. All vertices are part of this.MainGraph. Enumerating this property will enumerate the inner structures of the SubGraphView, no copy is made. This requires a lock on this.MainGraph.SyncRoot if this.MainGraph.IsSynchronized is set to true to make sure enumeration of this property is thread safe.
(Inherited from SubGraphView<TVertex, TEdge>.)
Top
Methods
  NameDescription
Public methodAdd(TEdge)
Adds the specified edge. If the vertices aren't in the view, they're added too.
(Inherited from SubGraphView<TVertex, TEdge>.)
Public methodAdd(TVertex)
Adds the specified vertex.
(Inherited from SubGraphView<TVertex, TEdge>.)
Public methodBindEvents
Binds the event handlers to the events of the main graph.
(Inherited from SubGraphView<TVertex, TEdge>.)
Public methodContains(TEdge)
Determines whether this SubGraphView contains the passed in edge.
(Inherited from SubGraphView<TVertex, TEdge>.)
Public methodContains(TVertex)
Determines whether this SubGraphView contains the passed in vertex.
(Inherited from SubGraphView<TVertex, TEdge>.)
Public methodDispose
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
(Inherited from SubGraphView<TVertex, TEdge>.)
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodHandleEdgeAddedToMainGraph
Handles the event that a new edge was added to the main graph
(Overrides SubGraphView<TVertex, TEdge>.HandleEdgeAddedToMainGraph(TEdge).)
Protected methodHandleEdgeRemovedFromMainGraph
Handles the event that an edge was removed from the main graph.
(Overrides SubGraphView<TVertex, TEdge>.HandleEdgeRemovedFromMainGraph(TEdge).)
Protected methodHandleVertexAddedToMainGraph
Handles the event that a new vertex was added to the main graph.
(Inherited from SubGraphView<TVertex, TEdge>.)
Protected methodHandleVertexRemovedFromMainGraph
Handles the event that a vertex was removed from the main graph.
(Inherited from SubGraphView<TVertex, TEdge>.)
Public methodMarkAsRemoved
Marks this instance as removed. It raises ElementRemoved
(Inherited from SubGraphView<TVertex, TEdge>.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Protected methodOnDisposing
Called when Disposing
(Inherited from SubGraphView<TVertex, TEdge>.)
Protected methodOnEdgeAdded
Called when an edge has been added to this view
(Overrides SubGraphView<TVertex, TEdge>.OnEdgeAdded(TEdge).)
Protected methodOnEdgeRemoved
Called when an edge has been removed from this view
(Inherited from SubGraphView<TVertex, TEdge>.)
Protected methodOnVertexAdded
Called when a vertex has been added to this view
(Inherited from SubGraphView<TVertex, TEdge>.)
Protected methodOnVertexRemoved
Called when a vertex has been removed from this view
(Overrides SubGraphView<TVertex, TEdge>.OnVertexRemoved(TVertex).)
Protected methodPerformSyncedAction(Action)
Performs the specified action, either inside a lock on MainGraph.SyncRoot if thegraph is Synchronized, or normally, if the graph isn't synchronized.
(Inherited from SubGraphView<TVertex, TEdge>.)
Protected methodPerformSyncedAction<T>(Func<T>)
Performs the specified action, either inside a lock on MainGraph.SyncRoot if the graph is Synchronized, or normally, if the graph isn't synchronized.
(Inherited from SubGraphView<TVertex, TEdge>.)
Public methodRemove(TEdge)
Removes the edge.
(Inherited from SubGraphView<TVertex, TEdge>.)
Public methodRemove(TVertex)
Removes the vertex.
(Inherited from SubGraphView<TVertex, TEdge>.)
Public methodSetAsHierarchyRoot
Sets the passed in entity as hierarchy root. Entity has to be present in this view.
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Public methodUnbindEvents
Unbinds the event handlers from the events of the main graph.
(Inherited from SubGraphView<TVertex, TEdge>.)
Top
Events
  NameDescription
Public eventDisposed
Event which is raised when this instance was disposed.
(Inherited from SubGraphView<TVertex, TEdge>.)
Public eventEdgeAdded
Event which is raised when an edge has been added to this SubGraphView
(Inherited from SubGraphView<TVertex, TEdge>.)
Public eventEdgeChanged
If TEdge supports change notification, this event is raised when an edge in the subgraph view was changed
(Inherited from SubGraphView<TVertex, TEdge>.)
Public eventEdgeRemoved
Event which is raised when an edge has been removed from this SubGraphView
(Inherited from SubGraphView<TVertex, TEdge>.)
Public eventHasBeenRemoved
Raised when the implementing element has been removed from its container
(Inherited from SubGraphView<TVertex, TEdge>.)
Public eventIsEmpty
Event which is raised when the subgraphview is made empty. Observers can use this event to dispose an empty subgraphview to avoid dangling event handlers.
(Inherited from SubGraphView<TVertex, TEdge>.)
Public eventVertexAdded
Event which is raised when a vertex has been added to this SubGraphView
(Inherited from SubGraphView<TVertex, TEdge>.)
Public eventVertexChanged
If TVertex supports change notification, this event is raised when a vertex in the subgraph view was changed
(Inherited from SubGraphView<TVertex, TEdge>.)
Public eventVertexRemoved
Event which is raised when a vertex has been removed from this SubGraphView
(Inherited from SubGraphView<TVertex, TEdge>.)
Top
See Also