Method FindRedundancyGroupsInView
- Namespace
- Skyline.DataMiner.Automation
- Assembly
- SLManagedAutomation.dll
FindRedundancyGroupsInView(int)
Retrieves all redundancy groups in the specified view.
RedundancyGroup[] FindRedundancyGroupsInView(int viewID)
Parameters
viewID
intThe view ID.
Returns
- RedundancyGroup[]
The redundancy groups in the specified view.
Examples
RedundancyGroup[] groups = engine.FindRedundancyGroupsInView(17);
FindRedundancyGroupsInView(string)
Retrieves all redundancy groups in the specified view.
RedundancyGroup[] FindRedundancyGroupsInView(string viewName)
Parameters
viewName
stringThe view name.
Returns
- RedundancyGroup[]
The redundancy groups in the specified view.
Examples
RedundancyGroup[] groups = engine.FindRedundancyGroupsInView("MySpecialView");