Click or drag to resize

ScriptEngine.DisableDynamicBinding Property

Enables or disables dynamic method binding.

Namespace: Microsoft.ClearScript
Assembly: ClearScript.Core (in ClearScript.Core.dll) Version: 7.5.0
Syntax
public bool DisableDynamicBinding { get; set; }

Property Value

Boolean

Implements

IScriptEngine.DisableDynamicBinding
Remarks
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