ParseOptions.ValueDescriptionTransform Property

Gets or sets a value that indicates how value descriptions derived from type names are transformed.

Definition

Namespace: Ookii.CommandLine
Assembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 5.0.0+724ca9b7fa5edc075ec2ae65044e61b0d494fd1c
C#
public NameTransform? ValueDescriptionTransform { get; set; }

Property Value

Nullable<NameTransform>
One of the members of the ArgumentNameTransform enumeration, or null to use the value from the ParseOptionsAttribute attribute, or if that is not present, NameTransform.None. The default value is null.

Remarks

This property has no effect on explicit value description specified with the ValueDescriptionAttribute attribute or the DefaultValueDescriptions property.

If not null, this property overrides the ParseOptionsAttribute.ValueDescriptionTransform property.

See Also