Gets a value of the given 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 Get<T>(
int index,
string name = null
)
Public Function Get(Of T) (
index As Integer,
Optional name As String = Nothing
) As T
public:
generic<typename T>
T Get(
int index,
String^ name = nullptr
)
member Get :
index : int *
?name : string
(* Defaults:
let _name = defaultArg name null
*)
-> 'T
Parameters
- index Int32
- The argument index.
- name String (Optional)
- An optional argument or property name.
Type Parameters
- T
- The type of value to get.
Return Value
TA value of type
T.
Remarks
This method throws an exception if the operation fails.
See Also