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.5
Syntaxpublic bool UseReflectionBindFallback { get; set; }
Public Property UseReflectionBindFallback As Boolean
Get
Set
public:
property bool UseReflectionBindFallback {
bool get ();
void set (bool value);
}
member UseReflectionBindFallback : bool with 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