Method GetNexts
- Namespace
- Skyline.DataMiner.Automation
- Assembly
- SLManagedAutomation.dll
GetNexts(string)
Returns all DCF interfaces connected to the current interface. This is especially useful in cases where a connection splits up into multiple internal connections.
public Interface[] GetNexts(string connectionNameFilter)
Parameters
connectionNameFilter
stringThe connection name filter.
Returns
- Interface[]
The DCF interfaces.
Examples
Interface[] nextInterfaces = interface.GetNexts("MyConnection",previousInterface);
Remarks
You can filter by connection name in order to limit the number of connections that will be returned.
Like for the GetNext method, you can use the GetNexts(string, Interface) overload to pass along the previous interface. This can be useful in case of star topology setups where all interfaces are connected to one interface defined from source to destination, or vice versa.
GetNexts(string, Interface)
Returns all DCF interfaces connected to the current interface, passing along the previous interface. This can be useful in case of star topology setups where all interfaces are connected to one interface defined from source to destination, or vice versa.
public Interface[] GetNexts(string connectionNameFilter, Interface previousInterface)
Parameters
connectionNameFilter
stringThe connection name filter.
previousInterface
InterfaceThe previous interface.
Returns
- Interface[]
The DCF interfaces.