Class CommandParameter
Represent a command parameter for use in an application
Inheritance
↳ object
↳ CommandParameter
Inherited Members
Equals(object)
Equals(object, object)
GetHashCode()
GetType()
MemberwiseClone()
ReferenceEquals(object, object)
ToString()
Namespace: OptimaJet.Workflow.Core.Runtime
Assembly: OptimaJet.Workflow.Core.dll
Syntaxpublic class CommandParameter
Properties
ParameterName
System name of the parameter
Declarationpublic string ParameterName { get; set; }
Type | Description |
---|---|
string |
LocalizedName
Localized name of the parameter
Declarationpublic string LocalizedName { get; set; }
Type | Description |
---|---|
string |
IsRequired
Indicates that the parameter is required
Declarationpublic bool IsRequired { get; set; }
Type | Description |
---|---|
bool |
Value
Value of the parameter
Declarationpublic object Value { get; set; }
Type | Description |
---|---|
object |
DefaultValue
Default value of the parameter
Declarationpublic object DefaultValue { get; set; }
Type | Description |
---|---|
object |
Type
Type of the parameter
Declarationpublic Type Type { get; }
Type | Description |
---|---|
Type |
TypeName
Full name of the type of the parameter
Declarationpublic string TypeName { get; set; }
Type | Description |
---|---|
string |
IsPersistent
Set true if you need to forcibly persist this parameter or it is the implicit persistent parameter
Declarationpublic bool IsPersistent { get; set; }
Type | Description |
---|---|
bool |