Click or drag to resize

V8FastHostObjectConfiguration<TObject> Class

Represents a fast host object configuration.
Inheritance Hierarchy
System.Object
  Microsoft.ClearScript.V8.FastProxy.V8FastHostObjectConfiguration<TObject>

Namespace: Microsoft.ClearScript.V8.FastProxy
Assembly: ClearScript.V8 (in ClearScript.V8.dll) Version: 7.5.0
Syntax
public abstract class V8FastHostObjectConfiguration<TObject>
where TObject : IV8FastHostObject

Type Parameters

TObject
The fast host object type.

The V8FastHostObjectConfiguration<TObject> type exposes the following members.

Constructors
 NameDescription
Protected methodV8FastHostObjectConfiguration<TObject> Initializes a new V8FastHostObjectConfiguration<TObject> instance.
Top
Properties
 NameDescription
Public propertyEnumerateIndexedProperties Controls whether indexed properties are enumerable.
Top
Methods
 NameDescription
Public methodAddMethodGetter(String, V8FastHostMethodInvoker<TObject>) Adds a getter for a method.
Public methodAddMethodGetter(String, V8FastHostObjectConfigurator<V8FastHostMethod<TObject>>, V8FastHostMethodInvoker<TObject>) Adds a getter for a method with the specified configuration callback.
Public methodAddMethodGetter(String, Int32, V8FastHostMethodInvoker<TObject>) Adds a getter for a method with the specified required argument count.
Public methodAddMethodGetter(String, Int32, V8FastHostObjectConfigurator<V8FastHostMethod<TObject>>, V8FastHostMethodInvoker<TObject>) Adds a getter for a method with the specified required argument count and configuration callback.
Public methodAddPropertyAccessors(String, V8FastHostPropertyGetter<TObject>, V8FastHostPropertySetter<TObject>) Adds accessors for a property.
Public methodAddPropertyAccessors(String, V8FastHostPropertyGetter<TObject>, V8FastHostPropertySetter<TObject>, V8FastHostPropertyFlags) Adds accessors for a property with the specified attributes.
Public methodAddPropertyAccessors<TField>(String, V8FastHostFieldAccessor<TObject, TField>) Adds accessors for a field-backed property.
Public methodAddPropertyAccessors<TField>(String, V8FastHostFieldAccessor<TObject, TField>, V8FastHostPropertyFlags) Adds accessors for a field-backed property with the specified attributes.
Public methodAddPropertyGetter(String, V8FastHostPropertyGetter<TObject>) Adds a getter for a read-only property.
Public methodAddPropertyGetter(String, V8FastHostPropertyGetter<TObject>, V8FastHostPropertyFlags) Adds a getter for a read-only property with the specified attributes.
Public methodAddPropertyGetter<TField>(String, V8FastHostFieldAccessor<TObject, TField>) Adds a getter for a field-backed read-only property.
Public methodAddPropertyGetter<TField>(String, V8FastHostFieldAccessor<TObject, TField>, V8FastHostPropertyFlags) Adds a getter for a field-backed read-only property with the specified attributes.
Public methodEqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
Protected methodFinalizeAllows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object)
Public methodGetHashCodeServes as the default hash function.
(Inherited from Object)
Public methodGetTypeGets the Type of the current instance.
(Inherited from Object)
Protected methodMemberwiseCloneCreates a shallow copy of the current Object.
(Inherited from Object)
Public methodSetAsyncEnumeratorFactory(Func<TObject, IV8FastAsyncEnumerator>) Sets a callback that creates an asynchronous enumerator for a TObject instance in IV8FastAsyncEnumerator form.
Public methodSetAsyncEnumeratorFactory<TItem>(Func<TObject, IAsyncEnumerator<TItem>>) Sets a callback that creates an asynchronous enumerator for a TObject instance in IAsyncEnumerator<T> form.
Public methodSetDynamicPropertiesGetter Sets a callback that gets the dynamic properties of a TObject instance.
Public methodSetEnumeratorFactory(Func<TObject, IV8FastEnumerator>) Sets a callback that creates an enumerator for a TObject instance in IV8FastEnumerator form.
Public methodSetEnumeratorFactory(Func<TObject, IEnumerator>) Sets a callback that creates an enumerator for a TObject instance in IEnumerator form.
Public methodSetEnumeratorFactory<TItem>(Func<TObject, IEnumerator<TItem>>) Sets a callback that creates an enumerator for a TObject instance in IEnumerator<T> form.
Public methodToStringReturns a string that represents the current object.
(Inherited from Object)
Top
Remarks
This class provides a way to configure the scriptable capabilities of a fast host object or type. It is not a required part of the interface between V8 and fast host objects, but it is used extensively by ClearScript's fast host object implementation infrastructure.
See Also