Click or drag to resize

ScriptEngineUseReflectionBindFallback Property

Enables or disables the use of reflection-based method binding as a fallback.

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

Property Value

Type: Boolean
Remarks
When this property is set to true, the script engine attempts to use reflection-based method binding when the default method binding algorithm fails. This approach reduces type safety, but it may be useful for running legacy scripts that rely on the specific behavior of reflection-based method binding.
See Also