Click or drag to resize

ScriptEngineDisableDynamicBinding Property

Enables or disables dynamic method binding.

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

Property Value

Boolean

Implements

IScriptEngineDisableDynamicBinding
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