Skip to main content

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

Syntax
public class CommandParameter

Properties

ParameterName

System name of the parameter

Declaration
public string ParameterName { get; set; }
Property value
TypeDescription
string

LocalizedName

Localized name of the parameter

Declaration
public string LocalizedName { get; set; }
Property value
TypeDescription
string

IsRequired

Indicates that the parameter is required

Declaration
public bool IsRequired { get; set; }
Property value
TypeDescription
bool

Value

Value of the parameter

Declaration
public object Value { get; set; }
Property value
TypeDescription
object

DefaultValue

Default value of the parameter

Declaration
public object DefaultValue { get; set; }
Property value
TypeDescription
object

Type

Type of the parameter

Declaration
public Type Type { get; }
Property value
TypeDescription
Type

TypeName

Full name of the type of the parameter

Declaration
public string TypeName { get; set; }
Property value
TypeDescription
string

IsPersistent

Set true if you need to forcibly persist this parameter or it is the implicit persistent parameter

Declaration
public bool IsPersistent { get; set; }
Property value
TypeDescription
bool

Extension Methods