Click or drag to resize

V8ScriptEngineSuppressInstanceMethodEnumeration Property

Enables or disables instance method enumeration.

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

Property Value

Boolean
Remarks
By default, a host object's instance methods are exposed as enumerable properties. Setting this property to true causes instance methods to be excluded from property enumeration. This affects all host objects exposed in the current script engine. Note that instance methods remain both retrievable and invocable regardless of this property's value.
See Also