Table of Contents

Method GetParameterDescription

Namespace
Skyline.DataMiner.Scripting
Assembly
SLManagedScripting.dll

GetParameterDescription(int)

Retrieves the description of the specified parameter.

object GetParameterDescription(int iID)

Parameters

iID int

The ID of the parameter.

Returns

object

The parameter description as string. If no parameter with the specified ID exists in the protocol, a null reference is returned.

Examples

string description = Convert.ToString(protocol.GetParameterDescription(100));

Remarks