public string? StripCommandNameSuffix { get; set; }
Public Property StripCommandNameSuffix As String
Get
Set
Dim instance As CommandOptions
Dim value As String
value = instance.StripCommandNameSuffix
instance.StripCommandNameSuffix = value
public:
property String^ StripCommandNameSuffix {
String^ get ();
void set (String^ value);
}
This property is only used if the CommandNameTransform property is not NameTransformNone, and is never used for commands with an explicit name.
For example, if you have a subcommand class named CreateFileCommand and you use NameTransformDashCase and the default value of "Command" for this property, the name of the command will be "create-file" without having to explicitly specify it.
The value of this property is case sensitive.