Skip to main content
.NET 6.0+

Command.ParseCommand(CommandCreationParam) Method

Parses the current command.

Namespace: DevExpress.EasyTest.Framework

Assembly: DevExpress.EasyTest.v23.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, for example, throw an exception when a mandatory parameter is omitted.

See Also