V8FastResult.Set<T>(T) Method |
Sets the result to a value of the given type.
Namespace: Microsoft.ClearScript.V8.FastProxyAssembly: ClearScript.V8 (in ClearScript.V8.dll) Version: 7.5.0
Syntaxpublic void Set<T>(
T value
)
Public Sub Set(Of T) (
value As T
)
public:
generic<typename T>
void Set(
T value
)
member Set :
value : 'T -> unit
Parameters
- value T
- A value of type T to assign to the result.
Type Parameters
- T
- The type of value to assign to the result.
See Also