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