Click or drag to resize

graphToolsGetDescendentFrontierAtOffsetT Method

imbSCI | imbACE | imbNLP | imbWEM | imbWBI
Returns descendent nodes at specified depthOffset. For branches that end before the offset depth, the leaf node is part of output

Namespace:  imbSCI.Data.collection.graph
Assembly:  imbSCI.Data (in imbSCI.Data.dll) Version: 0.3.70.
Syntax
C#
public static List<T> GetDescendentFrontierAtOffset<T>(
	this T parent,
	int depthOffset = 1
)
where T : IGraphNode
Request Example View Source

Parameters

parent
Type: T
The parent - starting node.
depthOffset (Optional)
Type: SystemInt32
Descendent distance - distance of frontier to select

Type Parameters

T

Return Value

Type: ListT

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type . When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also