VirtualUser StopBackgroundScriptImmediately Method C# API
Tells the script to stop immediately. It will result in the script terminating if it calls any API or exits itself by checking this.ct.IsCancellationRequested flag. Mind that if it does something in a tight loop or made a call to another library it can take as much time as it needed to finish those operations.

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

public void StopBackgroundScriptImmediately(
	string id
)

Parameters

id
Type: System String
Unique script ID, identifying the background script.
See Also