VirtualUser OnEndTiming Method C# API
This method is called whenever a timing is ended using the EndTiming(String, Boolean, VirtualUserScript) method.

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

protected virtual void OnEndTiming(
	string timing,
	bool pass
)

Parameters

timing
Type: System String
The timing identifier.
pass
Type: System Boolean
true if the timing should be interpreted as a pass; otherwise, false.
Remarks

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