Click or drag to resize

IBaseScriptMethodProviderIsCalledInForecast Property

This property is set by the Execution engine to mark if a method call is actually flow changing or just evaluating for branching. You can use this property inside your script methods to only do something when the execution actually called your script method.

Namespace:  Articy.Unity
Assembly:  ArticyRuntime (in ArticyRuntime.dll) Version: 1.0.3
Syntax
C#
bool IsCalledInForecast { get; set; }

Property Value

Type: Boolean
Remarks
Caution note Caution
It is currently not advised to make variable or logic changes that the execution could depend on in a non RelevantMethodCall.
See Also