Click or drag to resize

InitializationArgumentsGetParameterValueT Method

Returns the value of a parameter from the Parameters collection. If the value of a parameter is the name of a key from the Settings collection (prefixed with @) then the value is fetched from the first value of that setting.

Namespace:  Omada.OE.Solution.OIM.AppLogic.SurveyFeature.PostActions
Assembly:  Omada.OE.Solution.OIM.AppLogic (in Omada.OE.Solution.OIM.AppLogic.dll) Version: 15.0.0.0
Syntax
C#
public virtual T GetParameterValue<T>(
	string name,
	T defaultResult
)

Parameters

name
Type: SystemString
Name of the parameter.
defaultResult
Type: T
The defaultResult is retuned of the parameter doesn't exist.

Type Parameters

T
Must be either: int, string, DateTime or bool

Return Value

Type: T
See Also