IV8FastHostObjectOperations Interface |
Represents the operations supported by a fast host object.
Namespace: Microsoft.ClearScript.V8.FastProxyAssembly: ClearScript.V8 (in ClearScript.V8.dll) Version: 7.5.0
Syntaxpublic interface IV8FastHostObjectOperations
Public Interface IV8FastHostObjectOperations
public interface class IV8FastHostObjectOperations
type IV8FastHostObjectOperations = interface end
The IV8FastHostObjectOperations type exposes the following members.
Methods | Name | Description |
---|
 | CreateAsyncEnumerator |
Creates a fast asynchronous enumerator that iterates through the object's contents.
|
 | CreateEnumerator |
Creates a fast enumerator that iterates through the object's contents.
|
 | DeleteProperty(IV8FastHostObject, Int32) |
Deletes an indexed property.
|
 | DeleteProperty(IV8FastHostObject, String) |
Deletes a named property.
|
 | GetFriendlyName |
Gets a human-readable name for the specified object.
|
 | GetProperty(IV8FastHostObject, Int32, V8FastResult) |
Gets the value of an indexed property.
|
 | GetProperty(IV8FastHostObject, String, V8FastResult, Boolean) |
Gets the value of a named property.
|
 | GetPropertyIndices |
Enumerates the indices of all existing indexed properties.
|
 | GetPropertyNames |
Enumerates the names of all existing named properties.
|
 | QueryProperty(IV8FastHostObject, Int32) |
Gets the attributes of an indexed property.
|
 | QueryProperty(IV8FastHostObject, String) |
Gets the attributes of a named property.
|
 | SetProperty(IV8FastHostObject, Int32, V8FastArg) |
Sets the value of an indexed property.
|
 | SetProperty(IV8FastHostObject, String, V8FastArg) |
Sets the value of a named property.
|
Top
See Also