Method FindRedundancyGroup
- Namespace
- Skyline.DataMiner.Automation
- Assembly
- SLManagedAutomation.dll
FindRedundancyGroup(string)
Retrieves the redundancy group with the specified name.
RedundancyGroup FindRedundancyGroup(string name)
Parameters
name
stringThe redundancy group name.
Returns
- RedundancyGroup
The redundancy group with the specified name or null if no redundancy group with the specified name exists..
Examples
RedundancyGroup group = engine.FindRedundancyGroup("MySpecialRedundancyGroup");
Remarks
Name masks can contain the following wildcards:
- * : Any string of characters
- ? : Any single character
FindRedundancyGroup(int, int)
Retrieves the redundancy group with the specified DMA ID and group ID.
RedundancyGroup FindRedundancyGroup(int dmaID, int groupID)
Parameters
Returns
- RedundancyGroup
The redundancy group with the specified DMA ID and group ID or null if no redundancy group with the specified ID exists.
Examples
RedundancyGroup group = engine.FindRedundancyGroup(7,24);