A DTO to transfer information a parameter including it's current value.
Localized caption.
public String Caption { get; set; }
Default value of the parameter.
public String DefaultValue { get; set; }
Localized description.
public String Description { get; set; }
Parameter name.
public String Name { get; set; }
Options for this parameter.
public IList<IListItem> Options { get; set; }
Parameter type.
public ParameterType Type { get; set; }
The value of the parameter.
public String Value { get; set; }
Returns a textual representation of this parameter configuration.
public String ToString()
In this document