VirtualUser OnEndTransaction Method C# API
This method is called whenever a transaction is ended using the EndTransaction(String, Boolean, String, VirtualUserScript), FailTransaction(String) or FailTransaction(String, String) methods.

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

protected virtual void OnEndTransaction(
	string id,
	bool pass,
	string tag
)

Parameters

id
Type: System String
The transaction identifier.
pass
Type: System Boolean
true if the transaction should be interpreted as a pass; otherwise, false.
tag
Type: System String
Extra information which appears in the Info column.
Remarks

Override this method in your custom Virtual User if you have code which should be run whenever a transaction is ended.
See Also