Click or drag to resize

IScriptEngineDisableDynamicBinding Property

Enables or disables dynamic method binding.

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

Property Value

Boolean
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