Click or drag to resize

V8FastResult Structure

Represents a result returned from a fast host property getter, method, or function.
Inheritance Hierarchy
System.Object
  System.ValueType
    Microsoft.ClearScript.V8.FastProxy.V8FastResult

Namespace: Microsoft.ClearScript.V8.FastProxy
Assembly: ClearScript.V8 (in ClearScript.V8.dll) Version: 7.5.0
Syntax
public readonly ref struct V8FastResult

The V8FastResult type exposes the following members.

Properties
 NameDescription
Public propertyIsSet Determines whether the result has been set.
Top
Methods
 NameDescription
Public methodEqualsIndicates whether this instance and a specified object are equal.
(Inherited from ValueType)
Protected methodFinalizeAllows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object)
Public methodGetHashCodeReturns the hash code for this instance.
(Inherited from ValueType)
Public methodGetTypeGets the Type of the current instance.
(Inherited from Object)
Protected methodMemberwiseCloneCreates a shallow copy of the current Object.
(Inherited from Object)
Public methodSet(BigInteger) Sets the result to a BigInteger value.
Public methodSet(Boolean) Sets the result to a Boolean value.
Public methodSet(Byte) Sets the result to a Byte value.
Public methodSet(Char) Sets the result to a Char value.
Public methodSet(DateTime) Sets the result to a DateTime value.
Public methodSet(Decimal) Sets the result to a Decimal value.
Public methodSet(Double) Sets the result to a Double value.
Public methodSet(Int16) Sets the result to a Int16 value.
Public methodSet(Int32) Sets the result to a Int32 value.
Public methodSet(Int64) Sets the result to a Int64 value.
Public methodSet(ReadOnlySpan<Char>) Sets the result to a string value, specified as a ReadOnlySpan<char>.
Public methodSet(SByte) Sets the result to a SByte value.
Public methodSet(Single) Sets the result to a Single value.
Public methodSet(String) Sets the result to a string value.
Public methodSet(UInt16) Sets the result to a UInt16 value.
Public methodSet(UInt32) Sets the result to a UInt32 value.
Public methodSet(UInt64) Sets the result to a UInt64 value.
Public methodSet<T>(Nullable<T>) Sets the result to a nullable value of the given underlying type.
Public methodSet<T>(T) Sets the result to a value of the given type.
Public methodSetNull Sets the result to null.
Public methodSetUndefined Sets the result to undefined.
Public methodToStringReturns the fully qualified type name of this instance.
(Inherited from ValueType)
Top
See Also