Retrieves a configured value.

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


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

Syntax

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

Parameters

parameter
The parameter for the value to retrieve. 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