Table of Contents

Class Parameter.Write

Namespace
Skyline.DataMiner.Scripting
Assembly
ProtocolName.ProtocolVersion.QAction.Helper.dll

Holds an overview of the protocol write parameters.

public class Parameter.Write
Inheritance
Parameter.Write
Extension Methods

Remarks

This class defines for each parameter of type “write” two fields, just like for parameters of type read in the Parameter class. Suppose there is a parameter of type “write” with ID 158 and name “Status Code”, then the Write class will define the following two fields for the write parameter:

public class Write
{
	public const int statusCode_158 = 158;
	public const int statusCode = 158;
}