LinkGraphFindAllLinksAtNode 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: 24.2.419.0 (24.2.419.0)
Syntax public 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: SystemIServiceProvider
The node for which to search. - direction
- Type: AGI.Foundation.AccessLinkGraphDirection
The direction for which to search.
Return Value
Type:
IServiceProviderA list of links containing the given node and with the node at the correct end.
See Also