Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+

Command.ParseCommand(CommandCreationParam) Method

Parses the current command.

Namespace: DevExpress.EasyTest.Framework

Assembly: DevExpress.EasyTest.v20.2.dll

NuGet Package: DevExpress.EasyTest

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