Table of Contents

Method FindParameter

Namespace
Skyline.DataMiner.Net.Messages
Assembly
SLNetTypes.dll

FindParameter(int)

Returns the ParameterInfo object for the parameter with the given ID. When no parameter is found, returns null.

public ParameterInfo FindParameter(int parameterID)

Parameters

parameterID int

The parameter ID.

Returns

ParameterInfo

The parameter info.

FindParameter(string)

Returns the ParameterInfo object for the parameter with the given description. When no parameter is found, returns null.

public ParameterInfo FindParameter(string parameterDescription)

Parameters

parameterDescription string

Description of the parameter to look for.

Returns

ParameterInfo

The parameter info.

FindParameter(string, bool)

Finds the specified parameter.

public ParameterInfo FindParameter(string parameterDescription, bool writeParameter)

Parameters

parameterDescription string

The parameter description.

writeParameter bool

If true, specifically looks for a write parameter.

Returns

ParameterInfo

The parameter info.