Retrieves a configured value.

A returned value of Null indicates that no value has been explicitly configured for the requested parameter and an appropriate default value for the parameter in question is used instead.

Namespace:  FileNet.Api.Util
Assembly:  FileNet.Api (in FileNet.Api.dll)

ToggleSyntax

Visual Basic (Declaration)
Public Function GetParameter ( _
	parameter As ConfigurationParameter _
) As Object
C#
public Object GetParameter(
	ConfigurationParameter parameter
)
Visual C++
public:
Object^ GetParameter(
	ConfigurationParameter parameter
)
JavaScript
function getParameter(parameter);

Parameters

parameter
Type: FileNet.Api.Constants..::.ConfigurationParameter
The parameter whose value is to be retrieved. See ConfigurationParameter.

Return Value

The Object associated with the requested parameter value. If no value has been configured for the requested parameter, this method returns Null.

ToggleSee Also