FME Server .NET API

IFMETransformationRequest.SetFMEDirective Method 

Sets the value assigned to a FME Server directive. A full list of directives understood by the FME Server is available elsewhere in the FME Server documentation.

[Visual Basic]
Sub SetFMEDirective( _
   ByVal directiveName As String, _
   ByVal directiveValue As String _
)
[C#]
void SetFMEDirective(
   string directiveName,
   string directiveValue
);

Parameters

directiveName
The name of a FME Server directive.
directiveValue
A valid value for that directive.

Remarks

Directives affect how, when and where a transformation is run. Unlike parameters, they do not directly control the data processing that occurs during the transformation.

See Also

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