Execute

Navigation:  NxLib API > C# Interface / CLI > NxLibCommand >

Execute

Previous pageReturn to chapter overviewNext page

Starts the execution of the command given at construction time of the object.

Signatures

Error handling via exception:

void Execute()

void Execute(bool Wait)

Error handling via return code:

void Execute(Out int returnCode, bool Wait)

Parameters

returnCode

The API return code.

wait

Specifies whether the execution should be carried out synchronously (i.e. the function waits for the execution to finish), or whether the function should return after starting the command execution.

Return Value

none