Table of Contents

Method FindRedundancyGroupsInView

Namespace
Skyline.DataMiner.Automation
Assembly
SLManagedAutomation.dll

FindRedundancyGroupsInView(string)

Retrieves all redundancy groups in the specified view.

public RedundancyGroup[] FindRedundancyGroupsInView(string viewName)

Parameters

viewName string

The view name.

Returns

RedundancyGroup[]

The redundancy groups in the specified view.

Examples

RedundancyGroup[] groups = engine.FindRedundancyGroupsInView("MySpecialView");

FindRedundancyGroupsInView(int)

Retrieves all redundancy groups in the specified view.

public RedundancyGroup[] FindRedundancyGroupsInView(int viewID)

Parameters

viewID int

The view ID.

Returns

RedundancyGroup[]

The redundancy groups in the specified view.

Examples

RedundancyGroup[] groups = engine.FindRedundancyGroupsInView(17);