VirtualUser OnWriteMessage Method C# API
This method is called whenever an information message is written to the VU event log using the WriteMessage(String) or WriteMessage(String, String) methods.

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

protected virtual void OnWriteMessage(
	string id,
	string message
)

Parameters

id
Type: System String
The message identifier, which appears in the ID column.
message
Type: System String
An information message which appears in the Info column.
Remarks

Override this method in your custom Virtual User if you have code which should be run whenever an information message is written to the VU event log.
See Also