FromNodes 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.]
Returns a collection of edges from a collection of nodes.
Namespace: System.Dataflow
Assembly: System.Dataflow (in System.Dataflow.dll)
Syntax
'Declaration
PublicSharedFunctionFromNodes ( _
nodesAsIEnumerable(OfNode) _
) AsIEnumerable(OfEdge)
'Usage
DimnodesAsIEnumerable(OfNode)
DimreturnValueAsIEnumerable(OfEdge)
returnValue = Edge.FromNodes(nodes)
publicstaticIEnumerable<Edge> FromNodes(
IEnumerable<Node> nodes
)
public:
staticIEnumerable<Edge>^ FromNodes(
IEnumerable<Node>^ nodes
)
publicstaticfunctionFromNodes(
nodes : IEnumerable<Node>
) : IEnumerable<Edge>
Parameters
- nodes
Type: System.Collections.Generic. . :: . .IEnumerable< (Of < ( <'Node> ) > ) >
The collection of nodes.
Return Value
Type: System.Collections.Generic. . :: . .IEnumerable< (Of < ( <'Edge> ) > ) >
A collection of edges.
.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).