As400Program.AppendParms Method

Definition

Namespace: ASNA.DataGate.Client
Assembly: ASNA.QSys.DataGate.Client.dll

Appends an array of parameters to the program.

void AppendParms(ProgParm[] parameters)

Appends an array of parameters to the program.

Remarks

This method appends an array of parameters to the program in the ASNA DataGate client. It checks if the provided array is null, and if so, throws an ArgumentNullException. It then iterates over the array and appends each parameter to the program using the AppendParm method.

void AppendParms(ProgParm[] parameters)

Parameters

Type Parameter name Description
ProgParm[] parameters The array of parameters to append.

See Also