DispatcherTypeParameter Constructor |
Creates an instance of this entity class with initial and immutable data fields.
Namespace: Scanjour.Workflow4.Web.Services.EntitiesAssembly: Scanjour.Workflow4.Web.Services (in Scanjour.Workflow4.Web.Services.dll) Version: 24.5.0.0 (24.5.0.0)
Syntaxpublic DispatcherTypeParameter(
string name,
DispatcherTypeParameterOccurrenceOption occurrence,
string valueType,
string initialValue,
string description,
string domain,
string filter
)
Public Sub New (
name As String,
occurrence As DispatcherTypeParameterOccurrenceOption,
valueType As String,
initialValue As String,
description As String,
domain As String,
filter As String
)
public:
DispatcherTypeParameter(
String^ name,
DispatcherTypeParameterOccurrenceOption occurrence,
String^ valueType,
String^ initialValue,
String^ description,
String^ domain,
String^ filter
)
new :
name : string *
occurrence : DispatcherTypeParameterOccurrenceOption *
valueType : string *
initialValue : string *
description : string *
domain : string *
filter : string -> DispatcherTypeParameter
Parameters
- name String
- The name of the parameter (Unique within each dispatcher type).
- occurrence DispatcherTypeParameterOccurrenceOption
- Whether the parameter is optional or required.
- valueType String
- The parameter type according to requirement of Configurator integration.
- initialValue String
- The value that shall be used (i.e. copied into Value) when a new dispatcher of this type is introduced.
- description String
- Description of the parameter.
- domain String
- Domain of the value for the parameter
- filter String
- Filter used for the domain search
See Also