Hello,
I am creating a custom element in CVP studio. It is working fine. I have created several exit states, but I wonder how to set one of this exit. It is by default going to "done" exit, what method can I use to set a specific one.
//My exit state declaration
ExitState Failed = new ExitState("Failed", "Failed", "Authentication failure");
ExitState Success = new ExitState("Success", "Success", "Authentication success");
ExitState error = new ExitState("error", "error", "Error");
ExitState done = new ExitState("done", "done", "done");
//
Is there a method like ActionData.SetExitState ?
Thanks In advance
David