Click or drag to resize

V8FastArg.GetNullable<T> Method

Gets a nullable value of the given underlying type from the argument.

Namespace: Microsoft.ClearScript.V8.FastProxy
Assembly: ClearScript.V8 (in ClearScript.V8.dll) Version: 7.5.0
Syntax
public T? GetNullable<T>(
	string name = null
)
where T : struct, new()

Parameters

name  String  (Optional)
An optional argument or property name.

Type Parameters

T
The underlying type of the nullable value to get.

Return Value

Nullable<T>
A nullable value of underlying type T.
Remarks
This method throws an exception if the operation fails.
See Also