Click or drag to resize

IV8FastHostObjectOperations Interface

Represents the operations supported by a fast host object.

Namespace: Microsoft.ClearScript.V8.FastProxy
Assembly: ClearScript.V8 (in ClearScript.V8.dll) Version: 7.5.0
Syntax
public interface IV8FastHostObjectOperations

The IV8FastHostObjectOperations type exposes the following members.

Methods
 NameDescription
Public methodCreateAsyncEnumerator Creates a fast asynchronous enumerator that iterates through the object's contents.
Public methodCreateEnumerator Creates a fast enumerator that iterates through the object's contents.
Public methodDeleteProperty(IV8FastHostObject, Int32) Deletes an indexed property.
Public methodDeleteProperty(IV8FastHostObject, String) Deletes a named property.
Public methodGetFriendlyName Gets a human-readable name for the specified object.
Public methodGetProperty(IV8FastHostObject, Int32, V8FastResult) Gets the value of an indexed property.
Public methodGetProperty(IV8FastHostObject, String, V8FastResult, Boolean) Gets the value of a named property.
Public methodGetPropertyIndices Enumerates the indices of all existing indexed properties.
Public methodGetPropertyNames Enumerates the names of all existing named properties.
Public methodQueryProperty(IV8FastHostObject, Int32) Gets the attributes of an indexed property.
Public methodQueryProperty(IV8FastHostObject, String) Gets the attributes of a named property.
Public methodSetProperty(IV8FastHostObject, Int32, V8FastArg) Sets the value of an indexed property.
Public methodSetProperty(IV8FastHostObject, String, V8FastArg) Sets the value of a named property.
Top
See Also