V8FastArgs.TryGet<T>(Int32, T) Method |
Gets a value of the given type from the argument at the specified index if possible.
Namespace: Microsoft.ClearScript.V8.FastProxyAssembly: ClearScript.V8 (in ClearScript.V8.dll) Version: 7.5.0
Syntaxpublic bool TryGet<T>(
int index,
out T value
)
Public Function TryGet(Of T) (
index As Integer,
<OutAttribute> ByRef value As T
) As Boolean
public:
generic<typename T>
bool TryGet(
int index,
[OutAttribute] T% value
)
member TryGet :
index : int *
value : 'T byref -> bool
Parameters
- index Int32
- The argument index.
- value T
- On return, a value of type T if the operation succeeded.
Type Parameters
- T
- The type of value to get.
Return Value
BooleanTrue if the operation succeeded,
false otherwise.
See Also