public bool AutoCommandPrefixAliases { get; set; }
Public Property AutoCommandPrefixAliases As Boolean
Get
Set
Dim instance As CommandOptions
Dim value As Boolean
value = instance.AutoCommandPrefixAliases
instance.AutoCommandPrefixAliases = value
public:
property bool AutoCommandPrefixAliases {
bool get ();
void set (bool value);
}
If this property is , the CommandManager class will consider any prefix that uniquely identifies a command by its name or one of its explicit aliases as an alias for that command. For example, given two commands "read" and "record", "rea" would be an alias for "read", and "rec" an alias for "record" (as well as "reco" and "recor"). Both "r" and "re" would not be an alias because they don't uniquely identify a single command.