ScriptEngineEnableAutoHostVariables Property |
Enables or disables automatic host variable tunneling for by-reference arguments to script functions and delegates.
Namespace:
Microsoft.ClearScript
Assembly:
ClearScript.Core (in ClearScript.Core.dll) Version: 7.2.3
Syntaxpublic bool EnableAutoHostVariables { get; set; }
Public Property EnableAutoHostVariables As Boolean
Get
Set
public:
property bool EnableAutoHostVariables {
bool get ();
void set (bool value);
}
member EnableAutoHostVariables : bool with get, set
Property Value
Type:
Boolean
Remarks
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