Gets a value of the given type from the argument.
Namespace: Microsoft.ClearScript.V8.FastProxyAssembly: ClearScript.V8 (in ClearScript.V8.dll) Version: 7.5.0
Syntaxpublic T Get<T>(
string name = null
)
Public Function Get(Of T) (
Optional name As String = Nothing
) As T
public:
generic<typename T>
T Get(
String^ name = nullptr
)
member Get :
?name : string
(* Defaults:
let _name = defaultArg name null
*)
-> 'T
Parameters
- 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