V8FastArgs.GetInt32 Method |
Gets the
Int32 value of the argument at the specified index.
Namespace: Microsoft.ClearScript.V8.FastProxyAssembly: ClearScript.V8 (in ClearScript.V8.dll) Version: 7.5.0
Syntaxpublic int GetInt32(
int index,
string name = null
)
Public Function GetInt32 (
index As Integer,
Optional name As String = Nothing
) As Integer
public:
int GetInt32(
int index,
String^ name = nullptr
)
member GetInt32 :
index : int *
?name : string
(* Defaults:
let _name = defaultArg name null
*)
-> int
Parameters
- index Int32
- The argument index.
- name String (Optional)
- An optional argument or property name.
Return Value
Int32The
Int32 value of the argument at the specified index.
Remarks
This method throws an exception if the operation fails.
See Also