Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+
  • The page you are viewing does not exist in the .NET Core 3.0+ platform documentation. This link will take you to the parent topic of the current section.

Command.ParseCommand(CommandCreationParam) Method

Parses the current command.

Namespace: DevExpress.EasyTest.Framework

Assembly: DevExpress.EasyTest.v19.2.dll

Declaration

public virtual void ParseCommand(
    CommandCreationParam commandCreationParam
)

Parameters

Name Type Description
commandCreationParam DevExpress.EasyTest.Framework.CommandCreationParam

The CommandCreationParam object .

Remarks

Generally, you do not need to invoke this method from your code - it is used internally in the TestExecutor Utility. You can override this method in a custom command’s implementation to perform custom activity after the command is parsed, e.g. throw an exception when a mandatory parameter is omitted.

See Also