Method FindElementsByProtocol
- Namespace
- Skyline.DataMiner.Automation
- Assembly
- SLManagedAutomation.dll
FindElementsByProtocol(string)
Retrieves all elements executing the specified protocol.
Element[] FindElementsByProtocol(string name)
Parameters
name
stringThe 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.
Element[] FindElementsByProtocol(string name, string version)
Parameters
Returns
- Element[]
The elements executing the specified version of the specified protocol.
Examples
Elements[] elements = engine.FindElementsByProtocol("Microsoft Platform","1.1.0.48");