public NameTransform CommandNameTransform { get; set; }
Public Property CommandNameTransform As NameTransform
Get
Set
Dim instance As CommandOptions
Dim value As NameTransform
value = instance.CommandNameTransform
instance.CommandNameTransform = value
public:
property NameTransform CommandNameTransform {
NameTransform get ();
void set (NameTransform value);
}
If a command hasn't set an explicit name using the CommandAttribute attribute, the name is derived from the type name of the command, applying the specified transformation.
If this property is not NameTransformNone, the value specified by the StripCommandNameSuffix property will be removed from the end of the type name before applying the transformation.
This transformation is also used for the name of the automatic version command if the AutoVersionCommand property is .
This transformation is not used for commands that have an explicit name.