VirtualUser OnExitVU Method C# API
This method is called whenever the Virtual User stops execution as a result of the ExitVU , ExitVU(Boolean) or ExitVU(String, Boolean) methods.

Namespace: Facilita.Fc.Runtime
Assembly: fc_clr (in fc_clr.dll) Version: 9.5.5.77
Syntax

protected virtual void OnExitVU(
	string msg,
	bool pass
)

Parameters

msg
Type: System String
An information message which appears in the Info column of the end entry.
pass
Type: System Boolean
true if the script should be considered to have completed successfully; otherwise, false.
Remarks

Override this method in your custom Virtual User if you have code which should be run whenever the Virtual User stops execution.
See Also