VirtualUser OnRaiseAlert Method C# API
This method is called whenever an alert is raised using the RaiseAlert(AlertSeverity, String) method.

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

protected virtual void OnRaiseAlert(
	AlertSeverity severity,
	string description
)

Parameters

severity
Type: AlertSeverity
The severity of the alert.
description
Type: System String
An alert message which appears in the Description column of the alerts table in the Alerts sub-view of Test Controller.
Remarks

Override this method in your custom Virtual User if you have code which should be run whenever an alert is raised.
See Also