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)

Syntax

Visual Basic (Declaration)
Public Function GetParameter( _ 
   ByVal parameter As ConfigurationParameter _ 
) As Object
C#
public object GetParameter(
   ConfigurationParameter parameter
)
C++
public:
 Object GetParameter(
   ConfigurationParameter parameter
) sealed 
J#
public object GetParameter(
   ConfigurationParameter parameter
)
JScript
public  function GetParameter(
   parameter : ConfigurationParameter
) : Object

Parameters

parameter
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.

See Also