V8FastArgs.TryGet(Int32, SByte) Method |
Gets the
SByte value of 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(
int index,
out sbyte value
)
Public Function TryGet (
index As Integer,
<OutAttribute> ByRef value As SByte
) As Boolean
public:
bool TryGet(
int index,
[OutAttribute] signed char% value
)
member TryGet :
index : int *
value : sbyte byref -> bool
Parameters
- index Int32
- The argument index.
- value SByte
- On return, the SByte value of the argument at the specified index if the operation succeeded.
Return Value
BooleanTrue if the operation succeeded,
false otherwise.
See Also