IScriptEngineDisableDynamicBinding Property |
Enables or disables dynamic method binding.
Namespace: Microsoft.ClearScriptAssembly: ClearScript.Core (in ClearScript.Core.dll) Version: 7.4.5
Syntax bool DisableDynamicBinding { get; set; }
Property DisableDynamicBinding As Boolean
Get
Set
property bool DisableDynamicBinding {
bool get ();
void set (bool value);
}
abstract DisableDynamicBinding : bool with get, set
Property Value
BooleanRemarks
When this property is set to true, the script engine bypasses the default method
binding algorithm and uses reflection-based method binding instead. This approach
abandons support for generic type inference and other features, but it avoids engaging
the dynamic infrastructure.
See Also