V8FastHostPropertySetter<TObject> Delegate |
Represents a method that sets the value of a fast host property.
Namespace: Microsoft.ClearScript.V8.FastProxyAssembly: ClearScript.V8 (in ClearScript.V8.dll) Version: 7.5.0
Syntaxpublic delegate void V8FastHostPropertySetter<in TObject>(
TObject instance,
in V8FastArg value
)
where TObject : IV8FastHostObject
Public Delegate Sub V8FastHostPropertySetter(Of In TObject As IV8FastHostObject) (
instance As TObject,
ByRef value As V8FastArg
)
generic<typename TObject>
where TObject : IV8FastHostObject
public delegate void V8FastHostPropertySetter(
TObject instance,
[InAttribute] V8FastArg% value
)
type V8FastHostPropertySetter =
delegate of
instance : 'TObject *
value : V8FastArg byref -> unit
Parameters
- instance TObject
- The object whose property to set.
- value V8FastArg
- The property value.
Type Parameters
- TObject
- The fast host object type.
See Also