Table of Contents

Method FindElementsByProtocol

Namespace
Skyline.DataMiner.Automation
Assembly
SLManagedAutomation.dll

FindElementsByProtocol(string)

Retrieves all elements executing the specified protocol.

public Element[] FindElementsByProtocol(string name)

Parameters

name string

The name of the protocol.

Returns

Element[]

The elements executing the specified protocol.

Examples

Elements[] elements = engine.FindElementsByProtocol("Microsoft Platform");

FindElementsByProtocol(string, string)

Retrieves all elements sharing the specified protocol and protocol version.

public Element[] FindElementsByProtocol(string name, string version)

Parameters

name string

The protocol name.

version string

The protocol version.

Returns

Element[]

The elements executing the specified version of the specified protocol.

Examples

Elements[] elements = engine.FindElementsByProtocol("Microsoft Platform","1.1.0.48");