LinkGraph.FindAllLinksAtNode Method |
Find all the links which contain the given node and are in the correct direction.
Namespace:
AGI.Foundation.Access
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic IServiceProvider[] FindAllLinksAtNode(
IServiceProvider node,
LinkGraphDirection direction
)
Public Function FindAllLinksAtNode (
node As IServiceProvider,
direction As LinkGraphDirection
) As IServiceProvider()
public:
array<IServiceProvider^>^ FindAllLinksAtNode(
IServiceProvider^ node,
LinkGraphDirection direction
)
member FindAllLinksAtNode :
node : IServiceProvider *
direction : LinkGraphDirection -> IServiceProvider[]
Parameters
- node
- Type: System.IServiceProvider
The node for which to search. - direction
- Type: AGI.Foundation.Access.LinkGraphDirection
The direction for which to search.
Return Value
Type:
IServiceProvider[]A list of links containing the given node and with the node at the correct end.
See Also