FME Server .NET API

IFMETransformationRequest.SetPublishedParameter Method 

Sets the value assigned to a parameter. The interpretation of these parameters depends on whether a workspace (.fmw) or mapping file (.fme) is used. In a workspace, parameters correspond to published parameters; in a mapping file, parameters correspond to macro definitions.

[Visual Basic]
Sub SetPublishedParameter( _
   ByVal parmName As String, _
   ByVal parmValue As String _
)
[C#]
void SetPublishedParameter(
   string parmName,
   string parmValue
);

Parameters

parmName
The name of a published parameter or macro.
parmValue
The value to assign to the parameter.

Remarks

This is analogous to specifying "--parmName parmValue" on the FME command line.

See Also

IFMETransformationRequest Interface | IFMETransformationRequest Members | Safe.FMEServer.API Namespace