V8FastArgs.GetNullable<T> Method |
Gets a nullable value of the given underlying type from the argument at the specified index.
Namespace: Microsoft.ClearScript.V8.FastProxyAssembly: ClearScript.V8 (in ClearScript.V8.dll) Version: 7.5.0
Syntaxpublic T? GetNullable<T>(
int index,
string name = null
)
where T : struct, new()
Public Function GetNullable(Of T As {Structure, New}) (
index As Integer,
Optional name As String = Nothing
) As T?
public:
generic<typename T>
where T : value class, gcnew()
Nullable<T> GetNullable(
int index,
String^ name = nullptr
)
member GetNullable :
index : int *
?name : string
(* Defaults:
let _name = defaultArg name null
*)
-> Nullable<'T> when 'T : struct, new()
Parameters
- index Int32
- The argument index.
- 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