ScriptEngineDisableDynamicBinding Property |
Enables or disables dynamic method binding.
Namespace: Microsoft.ClearScriptAssembly: ClearScript.Core (in ClearScript.Core.dll) Version: 7.4.5
Syntax public bool DisableDynamicBinding { get; set; }
Public Property DisableDynamicBinding As Boolean
Get
Set
public:
virtual property bool DisableDynamicBinding {
bool get () sealed;
void set (bool value) sealed;
}
abstract DisableDynamicBinding : bool with get, set
override DisableDynamicBinding : bool with get, set
Property Value
BooleanImplements
IScriptEngineDisableDynamicBindingRemarks
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