ScriptEngineUseReflectionBindFallback Property |
Enables or disables the use of reflection-based method binding as a fallback.
Namespace: Microsoft.ClearScriptAssembly: ClearScript.Core (in ClearScript.Core.dll) Version: 7.4.5
Syntax public bool UseReflectionBindFallback { get; set; }
Public Property UseReflectionBindFallback As Boolean
Get
Set
public:
virtual property bool UseReflectionBindFallback {
bool get () sealed;
void set (bool value) sealed;
}
abstract UseReflectionBindFallback : bool with get, set
override UseReflectionBindFallback : bool with get, set
Property Value
BooleanImplements
IScriptEngineUseReflectionBindFallbackRemarks
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.
This property has no effect when DisableDynamicBinding is set to
true.
See Also