ConfigParam(String, String, ConfigParamType, Boolean) Constructor |
Process configuration parameter constructor.
Namespace: Scanjour.Workflow4.ActivityLibrary.DataAssembly: Scanjour.Workflow4.ActivityLibrary_24.5.0.0 (in Scanjour.Workflow4.ActivityLibrary_24.5.0.0.dll) Version: 24.5.0.0 (24.5.0.0)
Syntaxpublic ConfigParam(
string name,
string value,
ConfigParamType type,
bool isMandatory = false
)
Public Sub New (
name As String,
value As String,
type As ConfigParamType,
Optional isMandatory As Boolean = false
)
public:
ConfigParam(
String^ name,
String^ value,
ConfigParamType type,
bool isMandatory = false
)
new :
name : string *
value : string *
type : ConfigParamType *
?isMandatory : bool
(* Defaults:
let _isMandatory = defaultArg isMandatory false
*)
-> ConfigParam
Parameters
- name String
- The parameter name.
- value String
- The parameter default value.
- type ConfigParamType
- The parameter type.
- isMandatory Boolean (Optional)
- True if parameter value is mandatory.
See Also