public CommandInfo? GetCommand(
string commandName
)
Public Function GetCommand (
commandName As String
) As CommandInfo?
Dim instance As CommandManager
Dim commandName As String
Dim returnValue As CommandInfo?
returnValue = instance.GetCommand(commandName)
public:
Nullable<CommandInfo> GetCommand(
String^ commandName
)
The command is located by searching all types in the assemblies for a command type whose command name matches the specified name. If there are multiple commands with the same name, the first matching one will be returned.
A command's name is taken from the CommandName property. If that property is , the name is determined by taking the command type's name, and applying the transformation specified by the CommandNameTransform property.
Commands that don't meet the criteria of the CommandFilter predicate are not returned.
The automatic version command is returned if the AutoVersionCommand property is and the commandName matches the name of the automatic version command, and not any other command name.
ArgumentNullException | commandName is . |