IScriptEngineEnableAutoHostVariables Property |
Enables or disables automatic host variable tunneling for by-reference arguments to script functions and delegates.
Namespace: Microsoft.ClearScriptAssembly: ClearScript.Core (in ClearScript.Core.dll) Version: 7.4.5
Syntax bool EnableAutoHostVariables { get; set; }
Property EnableAutoHostVariables As Boolean
Get
Set
property bool EnableAutoHostVariables {
bool get ();
void set (bool value);
}
abstract EnableAutoHostVariables : bool with get, set
Property Value
BooleanRemarks
When this property is set to true, the script engine replaces by-reference
arguments to script functions and delegates with host variables, allowing script code
to simulate output arguments if the script language does not support them natively.
See Also