This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// <summary> | |
/// Generate an information event. (SLProtocolScripts.dll needs to be imported) ("using Skyline.DataMiner.ProtocolScripts;" is needed) | |
/// </summary> | |
/// <param name="protocol">Link with Skyline DataMiner</param> | |
/// <param name="sValue">Value of the event</param> | |
/// <param name="iPid">ID of the concerned parameter</param> | |
/// <returns>A boolean indicating if the event creation is a success or not.</returns> | |
public static bool CreateInformationEvent(SLProtocol protocol, string sValue, int iPid) | |
{ | |
Alarm oAl = new Alarm(); |