VirtualUser Post Method C# API
This method is called after all scripts have finished executing.

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

protected virtual void Post()
Remarks

Override this method in your custom Virtual User if you have code which should be run only once, after all scripts have finished executing.

Caution note Caution
This method shuts down logging systems. If you override this method in a custom Virtual User, then a call to base.Post()must be made at the end of the method.
Caution note Caution
All exceptions thrown during the execution of this method must be caught and handled.

See Also