GetEdges Method
[This content is no longer valid. For the latest information on "M", "Quadrant", SQL Server Modeling Services, and the Repository, see the Model Citizen blog.]
When overridden in a derived class, gets a collection of a node's outgoing edges.
Namespace: System.Dataflow
Assembly: System.Dataflow (in System.Dataflow.dll)
Syntax
'Declaration
ProtectedMustOverrideFunctionGetEdges ( _
nodeAsNode _
) AsICollection(OfEdge)
'Usage
DimnodeAsNodeDimreturnValueAsICollection(OfEdge)
returnValue = Me.GetEdges(node)
protectedabstractICollection<Edge> GetEdges(
Nodenode
)
protected:
virtualICollection<Edge>^ GetEdges(
Nodenode
) abstract
protectedabstractfunctionGetEdges(
node : Node
) : ICollection<Edge>
Parameters
- node
Type: System.Dataflow. . :: . .Node
The node.
Return Value
Type: System.Collections.Generic. . :: . .ICollection< (Of < ( <'Edge> ) > ) >
The collection of edges that is the outgoing edges of the node.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see https://msdn.microsoft.com/en-us/library/8skskf63(v=vs.85).