IV8FastHostObjectOperations.GetProperty(IV8FastHostObject, String, V8FastResult, Boolean) Method |
Gets the value of a named property.
Namespace: Microsoft.ClearScript.V8.FastProxyAssembly: ClearScript.V8 (in ClearScript.V8.dll) Version: 7.5.0
Syntaxvoid GetProperty(
IV8FastHostObject instance,
string name,
in V8FastResult value,
out bool isCacheable
)
Sub GetProperty (
instance As IV8FastHostObject,
name As String,
ByRef value As V8FastResult,
<OutAttribute> ByRef isCacheable As Boolean
)
void GetProperty(
IV8FastHostObject^ instance,
String^ name,
[InAttribute] V8FastResult% value,
[OutAttribute] bool% isCacheable
)
abstract GetProperty :
instance : IV8FastHostObject *
name : string *
value : V8FastResult byref *
isCacheable : bool byref -> unit
Parameters
- instance IV8FastHostObject
- The object to search for the property.
- name String
- The name of the property to get.
- value V8FastResult
- On return, the value of the property if it was found.
- isCacheable Boolean
- On return, true if the property value is a cacheable constant, false otherwise.
See Also