Table of Contents

Method FindRedundancyGroup

Namespace
Skyline.DataMiner.Automation
Assembly
SLManagedAutomation.dll

FindRedundancyGroup(string)

Retrieves the redundancy group with the specified name.

public RedundancyGroup FindRedundancyGroup(string name)

Parameters

name string

The 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.

public RedundancyGroup FindRedundancyGroup(int dmaID, int groupID)

Parameters

dmaID int

The DMA ID of the redundancy group.

groupID int

The group ID of the redundancy group.

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);