VirtualUser OnSetProgressPoint Method C# API
This method is called whenever a progress point is set using the SetProgressPoint(String), SetProgressPoint(String, Boolean) or SetProgressPoint(String, String, Boolean, VirtualUserScript) methods.

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

protected virtual void OnSetProgressPoint(
	string progressPoint,
	string info,
	bool pass
)

Parameters

progressPoint
Type: System String
The progress point identifier, which will appear in the Progress Point column in Test Controller.
info
Type: System String
Extra information which appears in the Info column.
pass
Type: System Boolean
true if the progress point 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 progress point is set.
See Also